我有从 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>