通道未定义。 Laravel,推送通知推送器

时间:2020-06-12 05:17:39

标签: laravel pusher-js

我正在使用带云服务器的laravel生产网络中使用pusher进行推送通知。它正在localhost上运行,然后也停止在localhost上运行,并在控制台中提示错误,未定义通道。

标题:

<meta name="csrf-token" content="{{ csrf_token() }}">
<link rel="stylesheet" type="text/css"
      href="//cdn.jsdelivr.net/npm/bootstrap-notifications@1.0.3/dist/stylesheets/bootstrap-notifications.min.css">

身体:

<script>

    var notificationsWrapper = $('.dropdown');
    var notificationsToggle = notificationsWrapper.find('a[data-toggle]');
    var notificationsCountElem = notificationsToggle.find('i[data-count]');
    var notificationsCount = parseInt(notificationsCountElem.data('count'));
    var notifications = notificationsWrapper.find('ul.dropdown-menu');

    if (notificationsCount <= 0) {
        notificationsWrapper.hide();
    }

    // Enable pusher logging - don't include this in production
    // Pusher.logToConsole = true;

    const pusher = new Pusher('PUSHER_APP_KEY', {
        cluster: 'ap2',
        encrypted: true
    });

    // Bind a function to a Event (the full Laravel class)
    channel.bind('App\\Events\\StatusLiked', function (data) {
        var existingNotifications = notifications.html();
        var avatar = Math.floor(Math.random() * (71 - 20 + 1)) + 20;
        var newNotificationHtml = "" +
            "<li class='notification active'><div class='media'>" +
            "<div class='media-left'>" +
            "<div class='media-object'>" +
            "<img src='https://api.adorable.io/avatars/71/" + avatar + ".png' class='img-circle' alt='50x50' style='width: 50px; height: 50px;'>" +
            "</div>" +
            "</div>" +
            "<div class='media-body'>" +
            "<strong class='notification-title'>" + data.message + "</strong><!--p class='notification-desc'>Extra description can go here</p-->" +
            "<div class='notification-meta'>" +
            "<small class='timestamp'>about a minute ago</small>" +
            "</div>" +
            "</div>" +
            "</div>" +
            "</li>";
        notifications.html(newNotificationHtml + existingNotifications).trigger('create');

        notificationsCount += 1;
        notificationsCountElem.attr('data-count', notificationsCount);
        notificationsWrapper.find('.notif-count').text(notificationsCount);
        notificationsWrapper.show();
    });
</script>

控制台打印通道未定义。

1 个答案:

答案 0 :(得分:1)

您需要先订阅频道,然后才能绑定到频道上的事件。渠道流为: 1.连接到频道服务 2.订阅频道 3.绑定到已订阅频道的事件。

由于您尚未在Pusher对象中包括Auth URL参数,因此我可以假定您正在使用公共频道。您可以使用以下方式订阅公共频道:

var channel = pusher.subscribe('CHANNEL-NAME');

注意:任何已发布的事件都会发布到某个频道,因此您需要确保您要在客户端上预订的频道与您要从服务器向其发布事件的频道匹配。