zoukankan      html  css  js  c++  java
  • ajax 设置Access-Control-Allow-Origin实现跨域访问

    ajax跨域访问是一个老问题了,解决方法很多,比较常用的是JSONP方法,JSONP方法是一种非官方方法,而且这种方法只支持GET方式,不如POST方式安全。

    即使使用jQuery的jsonp方法,type设为POST,也会自动变为GET。

    官方问题说明:

    “script”: Evaluates the response as JavaScript and returns it as plain text. Disables caching by appending a query string parameter, “_=[TIMESTAMP]“, to the URL unless the cache option is set to true.Note: This will turn POSTs into GETs for remote-domain requests.

    如果跨域使用POST方式,可以使用创建一个隐藏的iframe来实现,与ajax上传图片原理一样,但这样会比较麻烦。

    因此,通过设置Access-Control-Allow-Origin来实现跨域访问比较简单。

    例如:客户端的域名是www.client.com,而请求的域名是www.server.com

    如果直接使用ajax访问,会有以下错误

    XMLHttpRequest cannot load http://www.server.com/server.php. No 'Access-Control-Allow-Origin' header is present on the requested resource.Origin 'http://www.client.com' is therefore not allowed access.

    在被请求的Response header中加入

    [php] view plain copy
     
     在CODE上查看代码片派生到我的代码片
    1. // 指定允许其他域名访问  
    2. header('Access-Control-Allow-Origin:*');  
    3. // 响应类型  
    4. header('Access-Control-Allow-Methods:POST');  
    5. // 响应头设置  
    6. header('Access-Control-Allow-Headers:x-requested-with,content-type');  

    就可以实现ajax POST跨域访问了。

    代码如下:

    client.html 路径:http://www.client.com/client.html

    [html] view plain copy
     
     在CODE上查看代码片派生到我的代码片
    1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">  
    2. <html>  
    3.  <head>  
    4.   <meta http-equiv="content-type" content="text/html;charset=utf-8">  
    5.   <title> 跨域测试 </title>  
    6.   <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>  
    7.  </head>  
    8.   
    9.  <body>  
    10.     <div id="show"></div>  
    11.     <script type="text/javascript">  
    12.     $.post("http://www.server.com/server.php",{name:"fdipzone",gender:"male"})  
    13.       .done(function(data){  
    14.         document.getElementById("show").innerHTML = data.name + ' ' + data.gender;  
    15.       });  
    16.     </script>  
    17.  </body>  
    18. </html>  


    server.php 路径:http://www.server.com/server.php

    [php] view plain copy
     
     在CODE上查看代码片派生到我的代码片
    1. <?php  
    2. $ret = array(  
    3.     'name' => isset($_POST['name'])? $_POST['name'] : '',  
    4.     'gender' => isset($_POST['gender'])? $_POST['gender'] : ''  
    5. );  
    6.   
    7. header('content-type:application:json;charset=utf8');  
    8. header('Access-Control-Allow-Origin:*');  
    9. header('Access-Control-Allow-Methods:POST');  
    10. header('Access-Control-Allow-Headers:x-requested-with,content-type');  
    11.   
    12. echo json_encode($ret);  
    13. ?>  


    Access-Control-Allow-Origin:* 表示允许任何域名跨域访问

    如果需要指定某域名才允许跨域访问,只需把Access-Control-Allow-Origin:*改为Access-Control-Allow-Origin:允许的域名

    例如:header('Access-Control-Allow-Origin:http://www.client.com');

    如果需要设置多个域名允许访问,这里需要用php处理一下

    例如允许 www.client.com 与 www.client2.com 可以跨域访问

    server.php 修改为

    [php] view plain copy
     
     在CODE上查看代码片派生到我的代码片
      1. <?php  
      2. $ret = array(  
      3.     'name' => isset($_POST['name'])? $_POST['name'] : '',  
      4.     'gender' => isset($_POST['gender'])? $_POST['gender'] : ''  
      5. );  
      6.   
      7. header('content-type:application:json;charset=utf8');  
      8.   
      9. $origin = isset($_SERVER['HTTP_ORIGIN'])? $_SERVER['HTTP_ORIGIN'] : '';  
      10.   
      11. $allow_origin = array(  
      12.     'http://www.client.com',  
      13.     'http://www.client2.com'  
      14. );  
      15.   
      16. if(in_array($origin, $allow_origin)){  
      17.     header('Access-Control-Allow-Origin:'.$origin);  
      18.     header('Access-Control-Allow-Methods:POST');  
      19.     header('Access-Control-Allow-Headers:x-requested-with,content-type');  
      20. }  
      21.   
      22. echo json_encode($ret);  
      23. ?>  
  • 相关阅读:
    802.1x协议解析
    网上疯传河南高考零分作文:兔子 你傻啊?!
    802.1x协议解析
    图像旋转控件 TRotateImage Ver1.54(支持D3~D2010)
    如何在Windows下搭建Android开发环境(转)
    自制的小工具软件鼠标取色器
    【三九智慧】一卡通接口的 Delphi封装与测试
    自制的小工具软件鼠标取色器
    【三九智慧】一卡通接口的 Delphi封装与测试
    webservice soap hessian
  • 原文地址:https://www.cnblogs.com/grimm/p/5459312.html
Copyright © 2011-2022 走看看