1

我有从 mvc 控制器作为 Json 返回的对象列表。我想知道如何在视图上显示这些对象。

function GetTabData(xdata) {
    $.ajax({
        url: ('/Home/GetTabData'),
        type: 'POST',
        contentType: 'application/json',
        data: JSON.stringify({ id: xdata }),

        success: function (result) {
           /// what to do here? 
        },
        error: function () { alert("error"); }
    });
}

public JsonResult()
{
   ...
   var temp = getMyData...
   return Json(temp, JsonRequestBehavior.AllowGet);   
}

查看页面

<div id="showContent"> </div>
4

1 回答 1

1

这是您必须做的第一步:

success: function (result) {
    /// what to do here? 
    result = jQuery.parseJSON(result);
    /// Exploit your object(s) ;)
},

在此处查看有关利用的更多详细信息:http: //api.jquery.com/jQuery.parseJSON/

于 2012-07-19T20:32:39.780 回答