关于跨域问题(包括端口和域名跨域)
Posted 冂人山
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于跨域问题(包括端口和域名跨域)相关的知识,希望对你有一定的参考价值。
关于跨域问题(包括端口和域名跨域)
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);
2、php跨域
以上是关于关于跨域问题(包括端口和域名跨域)的主要内容,如果未能解决你的问题,请参考以下文章