博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
让webapi支持CORS,可以跨域访问
阅读量:4931 次
发布时间:2019-06-11

本文共 882 字,大约阅读时间需要 2 分钟。

1.在NuGet里搜索webapi找到下面的扩展,添加进项目里。

2.在Global.asax中添加一行代码

protected void Application_Start()        {            //添加CORS的支持            GlobalConfiguration.Configuration.EnableCors();            //其他东西            AreaRegistration.RegisterAllAreas();            WebApiConfig.Register(GlobalConfiguration.Configuration);            FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);            RouteConfig.RegisterRoutes(RouteTable.Routes);            BundleConfig.RegisterBundles(BundleTable.Bundles);        }

3.在控制器顶部添加配置代码

[EnableCors(origins: "*", headers: "*", methods: "*")]public class Default1Controller : ApiController
*号代表允许所有。 origins 代表允许哪些站点访问你的api,如果你只允许百度访问你的api,就可以这样设置,如果有多个用,分开
[EnableCors(origins: "http://www.baidu.com,http://www.qq.com", headers: "*", methods: "*")]
headers,methods代表所允许的请求所允许的自定义包头和HTTP方法
 

转载于:https://www.cnblogs.com/ariklee/p/3938106.html

你可能感兴趣的文章
[React] React Fundamentals: Mixins
查看>>
关于SQL数据库 数据库名 表名的一些操作
查看>>
1013. 识别三角形
查看>>
IE8+兼容经验小结
查看>>
Android studio下使用SharedSDK
查看>>
会话与请求
查看>>
hibernate one2many (单向关联)
查看>>
自制反汇编逆向分析工具
查看>>
MS SQLserver数据库安装
查看>>
第2章 数字之魅——斐波那契(Fibonacci)数列
查看>>
Spark集群基于Zookeeper的HA搭建部署笔记(转)
查看>>
Codeforces Round #106
查看>>
vue循环时设置多选框禁用状态,v-for
查看>>
CSS3 2D 转换
查看>>
视觉跟踪入门概念
查看>>
lumen 在AppServiceProvider 使用Illuminate\Support\Facades\Redis 报错
查看>>
Python随心记--函数之面向对象
查看>>
git上传文件夹报错: ! [rejected] master -> master (fetch first) error: failed to push some refs to 'h...
查看>>
uwp如何建立任何形状的头像,如圆形,方形,六边形等
查看>>
Python之禅与八荣八耻
查看>>