我需要一个事件和事件监听器(有关状态通道的问题)吗?

时间:2019-09-30 04:58:37

标签: laravel

我正在尝试使我的应用正常运行。帮助我了解我是否需要一个事件监听器和一个事件来使此代码起作用?我需要一个事件监听器来监听用户加入和离开时的事件,或者在存在状态下自动发生的事件吗?

Echo.join('chat')
.here((users) => {
   console.log('hello',users)
   this.users = users;
})
.joining((user) => {
   console.log('hey you', user)
   this.users.push(user);
})
.leaving((user) => {
   this.users.splice(this.users.indexOf(user), 1);
})

0 个答案:

没有答案