在.net mvc的controller中,方法返回JsonResult,一般我们这么写:
-
[
-
public JsonResult QueryFeature(string url, string whereClause)
-
{
-
string str="";
-
return Json(str);
-
}
此时如果str过长,就会报“使用 JSON JavaScriptSerializer 进行序列化或反序列化时出错,字符串的长度超过了为 maxJsonLength 属性设置的值”。
解决方法如下:
-
[
-
public JsonResult QueryFeature(string url, string whereClause)
-
{
-
string str="";
-
-
return new JsonResult()
-
{
-
Data = str,
-
MaxJsonLength = int.MaxValue,
-
ContentType = "application/json"
-
};
-
另一种:不是MVC的情况下。。web的情况下可以设置配置
利用JavaScriptSerializer 反序列话是提示字符串长度过长,解决方法一:
1.<system.web.extensions>
<scripting>
<webServices>
<jsonSerialization maxJsonLength="1024000" />
</webServices>
</scripting>
</system.web.extensions>
在web.config中configuration字节中添加
方法二:
JavaScriptSerializer jss = new JavaScriptSerializer();//js反序列化对象
jss.MaxJsonLength = Int32.MaxValue;
俩种解决方法
-----------------------------------------------------------------