GET和POST方法正常

时间:2022-01-16 04:17:13

问题环境:Windows Server 2008R2   IIS7.5

GET和POST方法正常

问题描述:网站挪用后台数据接口,GET和POST要领正常,PUT和DELETE要领报

     405 Method Not Allowed,No ‘Access-Control-Allow-Origin‘ header is present on the requested resource.

固然已做了跨域措置惩罚惩罚,,在本地是没问题的。

解决要领

贴一下谷歌采用最多的解决要领:

在web.config配置文件的 <system.webServer> 节点下,添加如下配置: 

<modules runAllManagedModulesForAllRequests="true">   <remove /> </modules>

<handlers>节点下添加

<remove />

不过我都一一试了,并没有效果,然后在控制面板 》措施和成果 》打开或*windows成果 》 将WebDav删除,重启IIS,事情正常。

标签:

原文地点:https://www.cnblogs.com/in-dreams/p/8568844.html