使用elasticsearch进行Ajax请求错误

时间:2015-08-21 05:55:16

标签: elasticsearch

我简单地使用ajax获取req到elasticsearc获取所有索引, 在浏览器中它适用于: enter image description here

在我的ajax中一样,我期望浏览器中的json数据返回到我的成功方法但是失败了:

enter image description here

2 个答案:

答案 0 :(得分:1)

如果您在dataType参数中将json替换为jsonp,它应该有效,如下所示:

$.ajax({
    url: "http://localhost:9200/dicoms/dicoms/_search",
    dataType: "jsonp",              <--- change this
    type: "GET",
    success: function(data) {
    ...
});

答案 1 :(得分:1)

响应不是JSON ,您可以在服务器程序中更改对JSON的响应。