//跨域 GlobalConfiguration.Configuration.EnableCors();
3、在 web.config 中设置权限 <system.webServer> 节点下 <httpProtocol> 节点下 <customHeaders> 添加
<add value="*" /> <add value="*" /> <add value="GET, POST, PUT, DELETE" />
注意:这里有个坑,在跨域上传图片的时候会提示跨域失败,,如果修改了content-type会启动预检,按照如下设置