webapi 发布接口报405错误(angularjs2.0)

时间:2022-02-01 06:27:04

web访问接口报405错误,以前的jQuery访问方式访问接口没有问题。

但是换成angularjs2.0之后调用接口就报405错误,ajax调用没有问题。

查找资料之后找到解决方案:

原因是webapi 默认的web.config有配置

<handlers>

<remove />

<remove />

<remove />

<add path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />

</handlers>

有这么个配置,,导致不行。要把他删掉,还要加上

<httpProtocol>

<customHeaders>

<add value="*" />

<add value="POST,GET" />

<add value="x-requested-with,content-type,authorization,mypara,username" />

</customHeaders>

</httpProtocol>

 

webapi 发布接口报405错误(angularjs2.0)