0

我加入了一个私人频道:

Echo.private('chat_room.'+comments_room_id)
.listen('.App.Events.Common.Comment.CommentCreated', function(e) {
                    e.comment.user = e.user;
                    e.comment.new_msg = 1;
                    _this.comment_room.comments.unshift(e.comment);
                });

我想使用 .here() 状态调用来让一组用户更新当前在线的用户。

我尝试了以下方法:

Echo.private('chat_room.'+comments_room_id)
                    .here(users => {
                        this.users = users;
                    })
                    .listen('.App.Events.Common.Comment.CommentCreated', function(e) {

但这没有用......

控制台中的错误是: Echo.private(...).here is not a function

4

1 回答 1

0

所以我发现你还需要在私人频道旁边加入一个在线频道才能使用 here() 方法。

                Echo.join('chat_room.'+comments_room_id)
                .here((users) => {
                    this.users = users;
                })
                .joining((user) => {
                    this.users.push(user)
                })
                .leaving((person) => {
                    this.users = _.reject(this.users, user => user.id == person.id);
                });
于 2017-03-03T15:11:20.313 回答