此请求的查询字符串的长度超过配置的 maxQueryStringLength 值。

 

<configuration>
    <system.web>
      <compilation debug="true" targetFramework="4.5" />
      <httpRuntime targetFramework="4.5" maxQueryStringLength="102400"  />
    </system.web>
    <system.webServer>
        <security>
            <requestFiltering>
                <requestLimits maxQueryString="102400" />
            </requestFiltering>
        </security>
    </system.webServer>

</configuration>

 

然后将web.config文件更新至服务器上与ajax同级目录下

 

用 btoa 编码  base64

用 atob 解码 base64

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-02-17
  • 2021-06-22
猜你喜欢
  • 2021-08-20
  • 2021-08-13
  • 2022-12-23
  • 2021-05-25
  • 2021-09-09
  • 2021-12-23
  • 2021-12-07
相关资源
相似解决方案