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

いくつかのコードが欠けていますがthis、コールバックがオブジェクトlistenにならないことは確かです。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

新しい人は、「this」のコンテキストを関数にバインドできるときはいつでも、ES6アロー関数を使用するようにしてください。

// 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 に答える