0

使用 phonegap,我正在尝试从服务器获取 json 数据。但它总是在执行 onCreateReportError 方法并给出 status=0。我经历了其他stackoverflow的相关问题,我的代码似乎没有任何问题。可能是什么问题?

$('#randomPerson').click(function(){
    $.ajax({
          type : "POST",
          url : 'http://localhost:9090/mvc-1.0.0-BUILD-SNAPSHOT/api/person/random',
            crossDomain: true,
            beforeSend : function() {$.mobile.loading('show')},
            complete   : function() {$.mobile.loading('hide')},
            dataType   : 'json',
          data : {},
          success: onCreateReportSuccess,
         error : onCreateReportError
        });


    function onCreateReportSuccess(person, textStatus, jqXHR) {
        console.log('Status: ' + textStatus);
        $('#personResponse').text(person.name + ', age ' + person.age);
    }

    function onCreateReportError(jqXHR, textStatus, errorThrown) {
        console.log('Status: ' + textStatus);
        console.log('Error: ' + errorThrown);
        alert('Error creating report');
    }
});
4

1 回答 1

0

你是在设备上测试吗?http://localhost:9090/从那里可以到达吗?

于 2013-10-23T14:52:57.187 回答