发送ajax请求phonegap

时间:2012-11-28 17:35:41

标签: android ajax cordova

我想在网站上发送ajax请求,但我有一个奇怪的结果:

$.ajax({
    type: 'GET',
    url: 'http://mydomain.com/test.json',
    success: function(data){
        console.log(data);
        alert('Ok');
    },
    error: function(data){
        console.log(data.responseText);
        alert('FAIL !!!');
    }
});

test.json是

{
    ttt: 1,
    ttt: 3,
    test:{
        aa: 1,
        bb: 2
    }
}

所以我有警报失败,但我的console.log我有我的json文件的内容

为什么错误会返回结果??

由于

1 个答案:

答案 0 :(得分:0)

试试这个样本:

$.ajax({
    type: 'GET',
    url: 'http://mydomain.com/test.json'}),
    success: function(data){
        console.log(data);
        alert('Ok');
    }),
    error: function(jqXHR, textStatus, errorThrown){
        console.log(textStatus);
        alert('FAIL !!!');
    },
});