码迷,mamicode.com
首页 > 其他好文 > 详细

关于跨域问题(包括端口和域名跨域)

时间:2017-09-07 20:28:18      阅读:337      评论:0      收藏:0      [点我收藏+]

标签:header   问题   请求   code   contex   pos   tty   img   orm   

关于跨域问题(包括端口和域名跨域)

  1、C#语言跨域 我估计任何语言在返回头加这个都可以解决跨域问题    

技术分享
//完全跨域设置 包括跨域名和端口
HttpContext.Current.Response.AddHeader("Access-Control-Allow-Origin", "*"); //跨域名
HttpContext.Current.Response.AddHeader("Access-Control-Allow-Headers", "*");//跨端口
HttpContext.Current.Response.AddHeader("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE, OPTIONS");
//HttpContext.Current.Response.AddHeader("Access-Control-Allow-Methods", "GET, POST");允许的请求类型
var data = HttpContext.Current.Request.Form["data"].ToString();
HttpContext.Current.Response.ContentType = "text/plain";
HttpContext.Current.Response.Write(data);
View Code

  2、PHP跨域

 

关于跨域问题(包括端口和域名跨域)

标签:header   问题   请求   code   contex   pos   tty   img   orm   

原文地址:http://www.cnblogs.com/zhouyukai/p/7491548.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!