如何访问JSON对象中的值?

这个问题在这里已经有了答案:

  • 在JavaScript中解析JSON? [复制] 16个回答
  • 在jQuery中序列化为JSON [复制] 11个回答

  • 我认为你可以使用直接的JsonResult,并应该工作

    [HttpPost]
    public JsonResult UploadFiles()
    {
    // save file..
    return Json(new { action_success = "true", newIndex = 2 });
    }
    

    并在客户端,如果您使用$ .ajax()然后将数据类型设置为JSON

    链接地址: http://www.djcxy.com/p/8091.html

    上一篇: How to access values in JSON object?

    下一篇: Converting the javascript object to json object