jsonp和CORS跨域实现

写js时总是会遇到跨域请求的问题,现在了解了两种方法,记录之:

1)jsonp,使用jquery封装的$.ajax,返回数据类型要设置为jsonp,示例:

     $.ajax({
        type: 'get',contentType: "application/json; charset=utf-8",url: "http://localhost:8080/aqi/getCityList.php",dataType: 'jsonp',</span>
        jsonp: "callback",//传递给请求处理程序或页面的,用以获得jsonp回调函数名的参数名(默认为:callback)
        jsonpCallback:"success_jsonpCallback",//自定义的jsonp回调函数名称,默认为jQuery自动生成的随机函数名</span>
        success:function(json){
          getCityListSuccess(json);
        },error: function (data,textStatus,errorThrown) {
            console.log("error" + ' ' + JSON.stringify(data) + textStatus + errorThrown);
        }
    });

或者使用$.getJson,在调用的url添加&callback=?

$.getJSON("http://localhost:8080/aqi/getDetailsByTimepointAndCityId.php?callback=?",{ "time_point": time_point,"city_id": city_id},function (json) {
            $('#radar-dialog').css("display","block");
            $('#radar-dialog').dialog({
                title: radar_cityname + "市," + timepoint,width: 350,});
            formatRadarData(json);
        });

PHP端的代码为:

<?php
   header("Content-Type: text/html;charset=utf-8");
 $db_name="aqidata.db";
   $conn = new sqlite3($db_name);
   $callback = $_GET['callback'];
   $resultarray=array();
 $sql = "select * from 'city' where 1=1 order by id";
 $result = $conn->query($sql);
 $i=0;
 while ($row = $result->fetchArray(SQLITE3_ASSOC)) {
   $resultarray[$i]=$row;
       $i++;
 }
   echo $callback.'('.json_encode($resultarray).')';


?>

注意:1、ajax中要指定jsonp参数,然后后端要把回调函数名称写入到返回值中。

我参考的博文是:http://www.cnblogs.com/xcxc/p/3729660.html


2)用CORS(Cross-Origin Resource Sharing),这个官方草案。

就是在后端代码(php)加入:
header("Access-Control-Allow-Origin:*");

相关文章

文章浏览阅读2.4k次。最近要优化cesium里的热力图效果,浏览...
文章浏览阅读1.2w次,点赞3次,收藏19次。在 Python中读取 j...
文章浏览阅读1.4k次。首字母缩略词 API 代表应用程序编程接口...
文章浏览阅读802次,点赞10次,收藏10次。解决一个JSON反序列...
文章浏览阅读882次。Unity Json和Xml的序列化和反序列化_uni...