我想在表的 from 中显示 ajax 调用结果中返回的 json 字符串。我的ajax代码是:
var table = $('#PartnersTable');
$.ajax({
type: "GET",
url: '@Url.Action("Get","Home")',
dataType: 'json'
}).done(function (data) {
// Code here
});
我尝试了很多解决方案,它们都在 stackoverflow 上,但它们没有用。提前致谢
这是我的操作代码:
public ActionResult Get()
{
Home h = new Home();
return Json(h.get(), JsonRequestBehavior.AllowGet);
}