1

尝试从我的休息服务发送一个简单的文本并使用 ajax 调用读取它。找到了很多关于 jsonp 和跨浏览器兼容性的答案,也尝试过跨域。

这是其余的服务:修剪所有内容以仅发送一个简单的字符串。

@GET
@Path("/getcontents2")
@Produces({MediaType.TEXT_PLAIN})
public String getContents2(@QueryParam("name") String msg) {
  return "abc";
}

ajax 调用:

$(document).ready(function() {
  $.ajax({
    type: 'GET',
    url: 'http://metrics/getcontents2?name=Work/loc.txt',
    crossDomain: true,
    async: false,
    dataType:'html',
    success: function (data) {
      console.log(data);
    },
    error: function (xhr, ajaxOptions, thrownError) {
      console.log(xhr.status);
      console.log(thrownError);
      console.log(xhr.responseText);
      console.log(xhr);
    },
  });
});

浏览器按原样打开字符串。我想在 jquery 脚本中确实有问题。

萤火虫错误:

GET http://metrics/getcontents2?name=Work/loc.txt 200 OK 4ms    
0 
(an empty string) 
(an empty string) 
Object { readyState=0, status=0, statusText="error"} 
4

2 回答 2

3

解决它!

这是因为我的服务器不支持跨域。配置它会 corsfilter 并且它就像一个魅力!

于 2013-06-06T00:45:56.027 回答
0

尝试将您的数据类型设置为文本jsonp

dataType: 'jsonp',

http://api.jquery.com/jQuery.ajax/

您必须执行以下两项操作之一才能进一步解决错误;

  1. 在服务器端进行更改以将数据作为 json 而不是文本传回
  2. 重新调整以 json 编码的字符串return "{"text":"abc"}"; //or something like this

为什么?

jquery 跨域请求只允许数据类型“script”和“jsonp”。

我已经更新了你的小提琴它仍然会抛出一个错误,但这与解析 json 错误有关

于 2013-06-04T02:02:00.560 回答