AngularJS的弹性搜索——跨域请求被阻止

Posted

技术标签:

【中文标题】AngularJS的弹性搜索——跨域请求被阻止【英文标题】:elastic search for AngularJS -- Cross-Origin Request Blocked 【发布时间】:2018-12-19 16:08:06 【问题描述】:

我已经在 windows 中安装了 elasticsearch-6.3.1 并尝试使用 angular 1 中的以下代码过滤数据,它给出了 CORS 错误

$http(
            url: 'http://localhost:9200/empinfo/employeedetails/_search',
            method: "POST",
            data: " 'query':  'query_string':  'query': 'Sujit','fields':['name']   ",
            headers:  'Content-Type': 'application/json' 
        ).success(function (data, status, headers, config) 
            console.log(data);
        ).error(function (data, status, headers, config) 
        );

我在 angular.js 中的 Elastic 搜索错误

虽然我在 elasticsearch.yml 文件中添加了 Allow CORS。

请帮帮我。

【问题讨论】:

$http .success 方法已经是deprecated and removed from V1.6。 【参考方案1】:

您需要取消注释 yml 文件中的行。 只需从每行的开头删除“#”。重新启动您的 Elasticsearch。

【讨论】:

以上是关于AngularJS的弹性搜索——跨域请求被阻止的主要内容,如果未能解决你的问题,请参考以下文章

AngularJS和跨域请求被阻止[关闭]

跨域请求在 Firefox 中被阻止

跨域请求被阻止 - 这可以通过启用 CORS 来解决

跨域请求被阻止:(原因:缺少 CORS 标头“Access-Control-Allow-Origin”)

不允许使用 CORS 使用 angularjs 进行跨域请求的 DELETE 请求

jQuery ajax 请求因为跨域而被阻止