在开始之前,我读到:
question 1 regarding process is not defined
question 2 regarding process is not defined
所提供的信息均无济于事。 我正在使用Angular 6,我想使用elasticsearch js将查询发送到elasticsearch。 我像这样安装了elasticsearch,弹性类型和弹性浏览器:
npm install elasticsearch
npm install @types/elasticsearch
npm install elasticsearch-browser
我尝试使用--save,使用--save-dev和不使用安装,但均无济于事。
然后我创建了一个带有角度cli的新项目:
import { Component } from '@angular/core';
import { Client } from "elasticsearch";
@Component({
selector: 'app-root',
template: `
<script src="/node_modules/elasticsearch/src/elasticsearch.js"></script>
<div class="container">
<div class="row">
<button type="" (click)="onSendElastic()">Click Me!</button>
</div>
</div>`,
styleUrls: ['./app.component.css']
})
export class AppComponent {
elClient: Client
onSendElastic(){
console.log('clicked on send elstic');
this.connect()
let res = this.elSearch()
console.log(`res: ${res}`);
}
connect(){
console.log('start connect...');
this.elClient = new Client({
host:"http://elasticIp:9200",
log:"trace"
})
this.elClient.ping({
requestTimeout:2000
},(err)=>{
if(err){
console.log('err');
}
else{
console.log('everything is ok');
}
})
}
elSearch(){
console.log('start search...');
return this.elClient.search({
index:"elastic_index",
type:"doc",
body:{
"query":{
"term":{
"field1":"true"
}
}
}
})
}
}
我添加了<script>
标签是因为我发现一些答案表明了这一点,但并没有帮助。
的格式取自:https://www.npmjs.com/package/elasticsearch。
当我启动项目时,通过运行ng start
或npm start
,当我按下按钮时,我得到:
点击发送elstic;开始连接...错误ReferenceError:“进程 没有定义” addOutputhttp:// localhost:4200 / vendor.js:100911:7Loghttp:// localhost:4200 / vendor.js:100749:5Transporthttp:// localhost:4200 / vendor.js:101610:27EsApiClienthttp:// localhost:4200 / vendor.js:99098:22Clienthttp:// localhost:4200 / vendor.js:99141:10connecthttp:// localhost:4200 / main.js:104:25onSendElastichttp:// localhost:4200 / main.js:98:9View_AppComponent_0ng: ///AppModule/AppComponent.ngfactory.js:14:23handleEventhttp://localhost:4200/vendor.js:39410:16callWithDebugContexthttp://localhost:4200/vendor.js:40503:22debugHandleEventhttp://localhost:4200/vendor .js:40206:12dispatchEventhttp:// localhost:4200 / vendor.js:36869:16renderEventHandlerClosurehttp:// localhost:4200 / vendor.js:37313:38decoratePreventDefaulthttp:// localhost:4200 / vendor.js:47314:36invokeTaskhttp:/ /localhost:4200/polyfills.js:2743:17onInvokeTaskhttp://localhost:4200/vendor.js:33108:24invokeTaskhttp://localhost:4200/polyfills.js:2742:17runTaskhttp://localhost:4200/polyfills.js :2510:28invokeTaskhttp:// localhost:4200 / polyfills.js:2818:24i nvokeTaskhttp://:// localhost:4200 / polyfills.js:3862:9globalZoneAwareCallbackhttp:// localhost:4200 / polyfills.js:3888:17
我找到了使用Elasticsearch浏览器的参考,但安装它似乎没有任何作用。 浏览器页面中的信息引用的是angularjs,而不是angular 2,所以我被卡住了。
为什么会发生此错误? 如何解决?
答案 0 :(得分:2)
我们发现this thread中的最后一个解决方案对我们有用:
特别是:
npm i -S process, then add this to polyfill.ts:
import * as process from 'process';
window['process'] = process;
答案 1 :(得分:0)
将Elastic search Client更新到15.1.1解决了类似的问题
"elasticsearch": "^15.1.1",
请尝试这个。