6

我不知道为什么我不能让我的服务器运行发射功能。

这是我的代码:

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'吗?

4

2 回答 2

15

好吧,我们缺少一些代码,但我很确定回调thislisten不会是您的myServer对象。

您应该在回调之外缓存对它的引用,并使用该引用...

function myServer(map, port, server) {
    this.start = function () {
        console.log("here");

        var my_serv = this; // reference your myServer object

        this.server.listen(port, function () {
            console.log(counterLock);
            console.log("here-2");

            my_serv.emit('start');  // and use it here
            my_serv.isStarted = true;
        });
    }

    this.on('start',function(){
        console.log("wtf");
    });
}

...或回调bind的外部值...this

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;
        }.bind( this ));  // bind your myServer object to "this" in the callback
    };  

    this.on('start',function(){
        console.log("wtf");
    });
}
于 2012-01-06T03:45:27.947 回答
0

对于新手,请确保尽可能使用 ES6箭头函数将“this”的上下文绑定到您的函数。

// Automatically bind the context
function() {
}

() => {
}

// You can remove () when there is only one arg
function(arg) {
}

arg => {
}

// inline Arrow function doesn't need { }
// and will automatically return
function(nb) {
  return nb * 2;
}

(nb) => nb * 2;
于 2018-08-07T11:08:30.693 回答