ionic + firebase + elasticsearch无法通过elasticsearch.js进行身份验证

时间:2018-09-10 10:08:11

标签: node.js typescript firebase elasticsearch ionic-framework

const client = new elasticsearch.Client({
  host: [
    {
      host: '35.192.45.130//elasticsearch',
      auth: 'user:password',
      protocol: 'http',
      port: 80
    }
  ]
});
//

await client.ping({
  // ping usually has a 3000ms timeout
  requestTimeout: 1000
}, function (error) {
  if (error) {
    console.trace('elasticsearch cluster is down!');
  } else {
    console.log('All is well');
  }
});

我不能授权使用离子进行弹性搜索。但是有了Postman,我已经可以登录并执行一些操作。

错误是

对预检请求的响应未通过访问控制检查:所请求的资源上不存在“ Access-Control-Allow-Origin”标头。因此,不允许访问来源“ http://localhost:8100”。响应的HTTP状态码为401。

1 个答案:

答案 0 :(得分:1)

解决方案是在Chrome浏览器中使用this plugin在浏览器中启用 CORS

有关CORS here

的更多信息