Angular2:View未从Socket.io事件更新

时间:2016-11-05 14:37:36

标签: angularjs angular typescript websocket socket.io

当我收到套接字事件时,我只是想更新我的视图。 我在组件中的代码如下所示:

constructor(private _zone: NgZone){
    this.socket = io.connect('http://localhost:3000');
    this.socket.on('someEvent', function(data) {
        this._zone.run(() => {
            this.dataItem = data.item;
            console.log(this.dataItem);
        });
    });
}

当我运行此浏览器控制台时显示一些错误:

EXCEPTION: TypeError: Cannot read property 'run' of undefined

顺便说一句,我的socket事件在index.html中正常工作

感谢任何形式的帮助。

1 个答案:

答案 0 :(得分:6)

不要使用function (),因为这种方式this不再指向当前的类实例。请改用箭头功能:

this.socket.on('someEvent', (data) => {