2

我想在网站上发送一个 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 文件的内容

为什么错误返回结果?

谢谢

4

1 回答 1

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 !!!');
    },
});
于 2012-11-28T18:25:29.633 回答