我需要绑定 html 列表框中的值。但是ajax并在客户端返回值。但它具有适当的重新运行值。我认为它的返回格式是错误的。如何改变这个?我的代码如下
public ActionResult value(bool sta1, bool sta2)
{
// my code
return Json(Selectedstudents.ToList(), JsonRequestBehavior.AllowGet);
}
阿贾克斯:
$.ajax({
//my code
dataType: 'json',
success: function (data) { // not trigger here
// my code
}
});