使用Cors在WebApi中实现跨域请求 第一步,在webapi项目中安装cors 在Web API配置文件中(Global.asax)进行全局配置: public class WebApiApplication : System.Web.HttpApplication { protected void Application_Start() { #region 跨域请求 var config = GlobalConfiguration.Configuration; var cors = new…