nodejs 中on 和 emit
Posted ServerSocket
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs 中on 和 emit相关的知识,希望对你有一定的参考价值。
首先测试用例:
var EventEmitter = require(‘events‘).EventEmitter var life = new EventEmitter(); // life.on(‘求安慰‘, function(who){ console.log(‘xxxx‘) }) function check(){ console.log(‘xxxx4354‘) } life.on(‘boys‘,check) // 移除监听 life.removeListener(‘boys‘, check) var hasconforListeren = life.emit(‘求安慰‘, ‘汉子‘); var hasconforListeren = life.emit(‘boys‘, check); console.log(hasconforListeren) console.log(life.listeners(‘boys‘)) console.log(EventEmitter.listenerCount(life, ‘求安慰‘))
总结:
/*
.on(‘事件名‘,function(){}) ---相当于 bind,但是不会触发
.emit(‘事件名‘)--- 相当于触发事件
*/
以上是关于nodejs 中on 和 emit的主要内容,如果未能解决你的问题,请参考以下文章
angularjs中的事件传播$emit,$broadcast,$on
如何封装对象,对象中有两个方法on和emit,on方法用来调用,emit方法用来调用,参数和vue的$on $emit一样