使用JSONP结果没有调用jQuery

时间:2015-07-08 01:10:07

标签: jquery ajax cors

结果状态是OK(200)但我似乎无法从我在AJAX中使用的url中获取数据。这是代码片段:

$.ajax({
    url: "http://fmon.asti.dost.gov.ph/home/index.php/api/data/118",
    dataType: 'jsonp',
    crossDomain: true,
    type: "GET",
    withCredentials: true,
    headers: {
        'Content-Type': 'application/json; charset=utf-8'
    },
    success: function (e) {
        ...
    }

0 个答案:

没有答案