<!--最近在WebApi对外提供的服务里面,,子系统请求时,遇到了跨域问题。现在解决方案是在webapi里的web.config找到上述代码地方,添加下面的代码即可 -->
<system.webServer>
<httpProtocol>
<customHeaders>
<add value="OPTIONS,POST,GET" />
<add value="*" />
<add value="*" />
</customHeaders>
</httpProtocol>
</system.webServer>