无法处理长的JSON字符串
我有一个变量varstore正在使用JSON从视图发送到控制器。 变量的问题在于它可能有很长的字符串,接近30000个字符。 我的JSON脚本如下
$.ajax({
url: "../Home/GridSubmit",
data: { "ddlstore": varstore, },
contentType: "application/json; charset=utf-8",
traditional: true
})
我有web.config配置为以下;
<webServices>
<jsonSerialization maxJsonLength="2147483644"/>
</webServices>
<httpRuntime maxQueryStringLength="500000" maxRequestLength="500000"/>`
点击操作按钮后,出现以下错误:
发生错误错误request-URI太长
请帮忙
链接地址: http://www.djcxy.com/p/42117.html上一篇: Unable to handle long JSON strings
下一篇: How can I pass HTML code stored in a string variable to a view in MVC 5?