我不知道为什么我不能让我的服务器运行发射功能。
这是我的代码:
myServer.prototype = new events.EventEmitter;
function myServer(map, port, server) {
...
this.start = function () {
console.log("here");
this.server.listen(port, function () {
console.log(counterLock);
console.log("here-2");
this.emit('start');
this.isStarted = true;
});
}
listener HERE...
}
听众是:
this.on('start',function(){
console.log("wtf");
});
所有的控制台类型都是这样的:
here
here-2
知道为什么它不会打印'wtf'
吗?