我正在从 Jquery ajax 调用 MVC 控制器方法。
$(document).ready(function () {
$.ajax({
type: "POST",
url: "/Customer/GetDetails",
contentType: "application/json; charset=utf-8",
async: false,
cache: false,
success: function (data) {
$.each(data, function (index, value) {
alert(value);
});
}
});
});
我有一个名为Customer的实体。
控制器方法从数据库中获取记录并存储为客户列表,并以 JsonResult 类型返回该列表。
public JsonResult GetDetails()
{
CustomerDAL customer = new CustomerDAL();
IList<Customer> custList = customer.GetDetail();
return Json(custList);
}
但是这里根本没有调用我的ajax的成功函数。