0

我尝试在 JavaScript 中使用 JQuery 进行 REST-Call。REST 方法返回一个简单的字符串。我尝试了以下方法(包括 JQuery):

$.ajax({
    type: 'GET',
    url: 'http://localhost:8080/SecureCloudboxServer/rest/connectionservice/ping',
    dataType: 'text',
    success: function(data){
        alert('success');
    },
    error: function(jqXHR, textStatus, errorThrown) {
        alert(jqXHR + ' : ' + textStatus + ' : ' + errorThrown);
    }
});

如果我在浏览器中执行它,警报窗口包含:“[object Object]:error:”。

如果我直接从浏览器调用 URL,我会得到预期的答案。有谁知道为什么它不起作用?

4

1 回答 1

2

利用

console.log(jqXHR + ' : ' + textStatus + ' : ' + errorThrown);

警报不会显示对象或数组

不要忘记使用 firebug 或与 console.log 类似的东西

于 2013-10-30T16:14:22.577 回答