Laravel使用无法传递参数的按钮广播存在频道

问题描述 投票:0回答:1

我已逐步按照https://laravel.com/docs/6.x/broadcasting的说明进行操作,并确保我进行复制和粘贴,以确保我没有记错。我可以播放很好,并且一切正常。因为我无法传递属性,所以将不一样的roomId中的人视为他们都在同一个房间中。这是现场示例:https://prayershub.com/worship/82-82是我想传递给的崇拜ID:

Broadcast::channel('worship_presence_channel.{id}', function ($id) {
if(Auth()->check())
{
    $profile = Auth()->user()->Profile;

    $user = Auth()->user();

    $data = [
        'id' => $user->id,
        'name' => $user->name,
        'username' => $user->username,
        'avatar' => config('app.storage').$profile->profile_image,
        'url' => $profile->profile_url,
        'favorite_bible_verse' => $profile->favorite_bible_verse
    ];

    return $id;
}

});

发件人:

Echo.join(`worship_presence_channel.${id}`)
    .here((users) => {            
        worshipers=users;
        joinUser(worshipers);
        $('.group-count').html(worshipers.length);
        console.log(users);
    })
    .joining((user) => {
        worshipers.push(user);
        popupNewUser(user);
        joinUser(worshipers);
        $('.group-count').html(worshipers.length);
    })
    .leaving((user) => {
        worshipers = worshipers.filter(function(obj) {
            return (obj.id !== user.id);
        });
        popupLeaveUser(user);
        joinUser(worshipers);
        $('.group-count').html(worshipers.length);
    });

我也有一个似乎没有必要的事件,但它像这样大笑:

public function broadcastOn()
{
    return new PresenceChannel('worship_presence_channel.58');
}

public function broadcastAs()
{
    return 'worship_presence_channel.58';
}

任何人都可以,请告诉我我做错了什么,或者如果我觉得整个事情都做错了。请帮助!

laravel broadcast channel pusher
1个回答
0
投票

我已经弄清楚了,我已经将上面的回显代码更改为此:

Broadcast::channel('worship_presence_channel.{id}', function ($user, $id) {
if(Auth()->check())
{
    $profile = $user->Profile;

    $data = [
        'id' => $user->id,
        'name' => $user->name,
        'username' => $user->username,
        'avatar' => config('app.storage').$profile->profile_image,
        'url' => $profile->profile_url,
        'favorite_bible_verse' => $profile->favorite_bible_verse,
        'worships_id' => $id
    ];

    return $data;
}

});

我正在传递2个参数$ user,$ id,它的工作方式与文档所说的一样!!

© www.soinside.com 2019 - 2024. All rights reserved.