webapi跨域

1.安装Microsoft.AspNet.WebApi.Cors

webapi跨域_第1张图片

2.在webapiconfig中加入即可

config.EnableCors(new EnableCorsAttribute("*","*","*"));

webapi跨域_第2张图片

你可能感兴趣的:(WEBAPI)