저는 최근 데이터 액세스를 위해 도메인 간 요청이 필요한 프로젝트를 진행했습니다. 이번 글에서는 C#의 ajax 크로스 도메인 접근 코드에 대해 자세히 설명하겠습니다. 필요한 친구들은
을 참고하세요. 최근 프로젝트 요구로 인해 크로스 도메인 요청이 많아지고 있습니다. 데이터에 액세스하려면 필요합니다. 도메인 간 액세스는 무엇을 의미합니까?
[크로스도메인]: 브라우저가 다른 웹사이트의 스크립트를 실행할 수 없다는 의미입니다. 이는 JavaScript에서 브라우저가 부과하는 보안 제한인 브라우저의 동일 출처 정책으로 인해 발생합니다. 소위 동일 도메인이란 도메인 이름, 프로토콜, 포트가 동일하다는 뜻입니다. 이해하지 못해도 상관없습니다. 예를 들어 내 컴퓨터에는 192.168.0.11과 192.168.0.12라는 두 개의 서버가 있습니다. . 첫 번째 서버의 페이지가 두 번째 서버의 데이터에 액세스해야 하는 경우 이를 크로스 도메인이라고 합니다. 또는 www.xxx.com에 액세스하려면 http://www.baidu.com도 도메인 이름과 교차 도메인이 다릅니다. 전체 요청 사례는 다음과 같습니다.
프런트 엔드 페이지 요청 코드 조각:
<script type="text/javascript"> function ajaxsubmit(name,phone) { $.ajax({ type: "get", url: "http://10.10.10.132:35709/AppInterface/ResourceInsert.ashx", data: { "share_name": encodeURI(name), "telphone": encodeURI(phone), "fromtype": 4 }, dataType : "jsonp", jsonp: "callback", jsonpCallback: "successcallback", success: function (json) { alert(json.msg); }, error:function(e){ alert("提交失败!请稍后再试"); } }); } </script>
일반 처리기 코드 조각:
public class ResourceInsert : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "application/json"; context.Response.ContentEncoding = System.Text.Encoding.UTF8; cms.Model.Resource model = new Model.Resource(); cms.BLL.Resource bll = new BLL.Resource(); //你所需要进行的操作 model.share_name = HttpUtility.UrlDecode(context.Request["share_name"]); model.ask_telphone = HttpUtility.UrlDecode(context.Request["telphone"]); model.back_row_one = context.Request["fromtype"]; ConvertHelper ch = new ConvertHelper(); model.share_name = ch.RemoveSpecialChar(model.share_name); //successcallback为跨域请求回调函数,切记必不可少。获取方式也可以为context.Request["callback"], //对应前端页面发起请求的jsonp和jsonpCallback格式为:jsonp_value=jsonpCallback_value if (bll.Exists(model.share_name, model.ask_telphone)) { Message temp = new Message(1, "我们已收到您的请求额!请勿重复提交!", null); context.Response.Write("successcallback" + "(" + JsonConvert.SerializeObject(temp) + ")"); context.Response.End(); return; } else { if (bll.Add(model) > 0) { Message temp = new Message(1, "提交成功,我们工作人员会尽快回复你!感谢关注!", null); context.Response.Write("successcallback" + "(" + JsonConvert.SerializeObject(temp) + ")"); context.Response.End(); return; } else { Message temp = new Message(0, "请确认信息填写无误!", null); context.Response.Write("successcallback" + "(" + JsonConvert.SerializeObject(temp) + ")"); context.Response.End(); return; } } } public bool IsReusable { get { return false; } } }
여기에 있다고 생각하시나요? 물론 눈을 가늘게 뜨고 있지 않습니다. 구성 파일은 물론 필수입니다. web.config 파일의 system.webServer 노드 아래에 다음 구성을 추가하세요.
<system.webServer> <httpProtocol> <customHeaders> <add name="Access-Control-Allow-Methods" value="OPTIONS,POST,GET"/> <add name="Access-Control-Allow-Headers" value="x-requested-with,content-type"/> <add name="Access-Control-Allow-Origin" value="*" /> </customHeaders> </httpProtocol> </system.webServer>
위 내용은 C#의 Ajax 도메인 간 액세스 문제에 대한 자세한 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!