1.跨域问题处理
需要在web.config 添加节点
<system.webServer> <httpProtocol> <customHeaders> <add name="Access-Control-Allow-Origin" value="*" /> <add name="Access-Control-Allow-Headers" value="Content-Type" /> <add name="Access-Control-Allow-Methods" value="GET, POST, PUT, DELETE, OPTIONS" /> </customHeaders> </httpProtocol> </system.webServer>
2.URL超长问题处理
需要在web.config 添加节点
<system.web> <httpRuntime maxUrlLength="109999" maxQueryStringLength="2097151" /> </system.web>
<system.webServer> <security> <requestFiltering> <requestLimits maxUrl="109999" maxQueryString="2097151" /> </requestFiltering> </security> </system.webServer>
3.URL传参中包含空格问题
3.1 在 js 中对传参内容进行转译,使用 encodeURIComponent 方法
3.2 在后台代码中,使用 Uri.UnescapeDataString 方法对转译内容进行解析
标签:WebAPI,web,IIS,URL,js,config From: https://www.cnblogs.com/SuperJason/p/18672267