【小程序】小程序报这个错,该怎么解决?

程序报这个错该怎么解决?

我知道是事件监听超出限制,让设置一个最大监听数,可是在哪里设置?【小程序】小程序报这个错,该怎么解决?

(node) warning: possible EventEmitter memory leak detected. 11 listeners added. Use emitter.setMaxListeners() to increase limit.

这个小程序的点击都是绑定的bindtap事件,我知道这么做会发生这种问题,但是不知道咋解决
麻烦各位大神帮忙看看~ 有解决方案最好了~

回答

const emitter = new EventEmitter()

emitter.setMaxListeners(100)//指定一个最大监听数量

emitter.setMaxListeners(0)//或者关闭最大监听阈值

以上是 【小程序】小程序报这个错,该怎么解决? 的全部内容, 来源链接: utcz.com/a/79113.html

回到顶部