サーバーで発行機能を実行できない理由がわかりません。
これが私のコードです:
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'
ですか?