我有从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>
答案 0 :(得分:1)
这是您必须要做的第一步:
success: function (result) {
/// what to do here?
result = jQuery.parseJSON(result);
/// Exploit your object(s) ;)
},
在此处查看有关利用的更多详细信息:http://api.jquery.com/jQuery.parseJSON/