标签: c# asp.net-mvc json-serialization
在ASP.NET MVC中,我可以超越JSON的最大长度吗?
var jsonResult = Json(data, JsonRequestBehavior.AllowGet); jsonResult.MaxJsonLength = int.MaxValue; return jsonResult;
我的数据大于最大值。如果不是,我该如何将数据发送给方法的调用者?