Jquery调用WebService报错因长度序列化失败

来源:互联网 发布:淘宝q币充值支持花呗 编辑:程序博客网 时间:2024/06/05 01:12

 webconfig加入如下配置

 <!--
    js调用报错【进行序列化或反序列化时出错。字符串的长度超过了为 maxJsonLength 属性设置的值】
  -->
  <system.web.extensions>
    <scripting>
      <webServices>
        <jsonSerialization maxJsonLength="1024000">
        </jsonSerialization>
      </webServices>
    </scripting>
  </system.web.extensions>