6
में उत्सर्जन फ़ंक्शन का उपयोग करके मैं यह नहीं समझ सकता कि मैं अपने सर्वर को उत्सर्जित फ़ंक्शन चलाने के लिए क्यों नहीं बना सकता।node.js
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'
प्रिंट?
आपका बहुत बहुत धन्यवाद!!! – Itzik984