为什么我会出错 kafka.Client
不是构造函数 npm kafka-node
这是创建Kafka连接的方法吗?
具体问题是: this.client = new kafka.Client();
整个构造器是:
constructor(){
this.Producer = kafka.Producer,
this.client = new kafka.Client();
this.producer = new Producer(client);
}
为什么我会出错 kafka.Client
不是构造函数 npm kafka-node
这是创建Kafka连接的方法吗?
具体问题是: this.client = new kafka.Client();
整个构造器是:
constructor(){
this.Producer = kafka.Producer,
this.client = new kafka.Client();
this.producer = new Producer(client);
}
1条答案
按热度按时间sy5wg1nm1#
这个问题的解决办法如下。通过此实现,代码按预期工作: