0
this.server = net.createServer(this.onAccept);
this.server.listen(this.port);
}
Server.prototype.onAccept = function() {
var client = new Client();
this.addClient(client);
};
Server.prototype.addClient = function (client) {
this.clients.push(client);
};
関数ではありません:this.addClientは、これが発生している理由を私は知らないの行に27this.addClientは、私がNode.jsの上で、このエラーを取得してい
関数ではありません。
あなたのコードが切断され、それをバインドすることができます。すべての投稿をお願いしますか? – Bennett