TypeError:无法读取未定义

时间:2017-02-02 19:32:37

标签: javascript node.js sockets typeerror

问题在于,每当我尝试触发“this.io.emit”事件时,就会发生TypeError。它仅在我在“socket.on”块内写入此语句“this.io.emit”时给出,否则,如果我在该块之外写入它则不会产生错误。

这是调用其他库的主要server.js文件:

const express = require('express'),
http = require('http'),
socketio = require('socket.io');

class App{

constructor()
{
    this.port =  process.env.PORT || 81;
    this.host = `localhost`;        
    this.app = express();
    this.http = http.Server(this.app);
    this.socket = socketio(this.http);
}
appConfig(){
    new config(this.app);
}
appRoutes(){
    new routes(this.app,this.socket).routesDefault();
}
appDefault(){
    this.appConfig();
    this.appRoutes();
    this.http.listen(this.port,this.host,()=> {
        console.log(`Listening`);
    });
}}

我的服务器端代码是:

'use strict';
class Routes {

constructor(app,socket) {
    this.app = app;
    this.io = socket;
    this.users=[];
}

routesTemplate()
{
    this.app.get('/',function(req,res){
        res.render('index');
    });
}

socketEvents()
{
    this.io.on('connection',(socket) => {
        socket.on('send message',function(data)
        {
            this.io.emit('new message',data);//here the error lies.
        });
    }); 
}
routesDefault()
{
    this.routesTemplate();
    this.socketEvents();
}}  
module.exports = Routes;

我还尝试在socket.on语句中访问“this.users.The length”并生成相同的TypeError:无法读取属性长度。我不知道它为什么会发生。请帮我解决这个问题。

客户端:

        <script>
        $(function($){
            var socket = io.connect();
            var $messageForm = $('#send-message');
            var $messageBox = $('#message');
            var $chat = $('#chat');

            $messageForm.submit(function(e){
                e.preventDefault();
                socket.emit('send message',$messageBox.val());
                $messageBox.val("");
            });
            socket.on('new message',function(data){
                $chat.append(data+ "<br/>");
            });
        });
    </script>

3 个答案:

答案 0 :(得分:6)

input[type="radio"] { margin-top: 1px; vertical-align: top; } 的上下文是您代码中的一个问题。要传递当前上下文,请使用thisbind函数。在javascript中,Arrow的值由如何调用函数定义,在您的情况下是this对象。

socket

P.S。:编辑,现在这段代码工作正常。我想建议下面描述的帖子。

What are the differences (if any) between ES6 arrow functions and functions bound with Function.prototype.bind?

答案 1 :(得分:0)

这是因为内部函数的上下文不同。

尝试:

socketEvents()
{
    this.io.on('connection',(socket) => {
        socket.on('send message',function(data)
        {
            socket.emit('new message',data);//here the error lies.
        });
    }); 
}

答案 2 :(得分:0)

使用 io.emit()代替 socket.broadcast.emit()

io.on('connection', function(socket){
  socket.broadcast.emit('request', /* */); 
  io.emit('broadcast', /* */); 
  socket.on('reply', function(){ /* */ }); 
});