<u></u>jsonResult.MaxJsonLength
是一个int
类型变量,最大值是int.MaxValue
。
Action中使用return Json(...);
返回一个JsonResult
的时候,
会在内部调用JavaScriptSerializer
类的Serialize
方法,
如果超出MaxJsonLength
,会由.net mvc抛异常。
http请求的结果:
500 (Internal Server Error)
触发的$.ajax
的error
回调,
xhr.status===500
xhr.statusText==='Internal Server Error'