我能够从Pusher调试控制台中触发虚拟事件,而我的客户端能够接收它们。但是,当我尝试从UserController触发事件时,似乎什么也没有发生。
这是我的活动课程
<?php
namespace App\Events;
use App\Events\Event;
use App\Player;
use App\Product;
use Illuminate\Queue\SerializesModels;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
class NewPurchase extends Event implements ShouldBroadcast
{
use SerializesModels;
public $product;
/**
* Create a new event instance.
*
* @param Product $product
* @return void
*/
public function __construct(Product $product)
{
$this->product = $product;
}
/**
* Get the channels the event should be broadcast on.
*
* @return array
*/
public function broadcastOn()
{
return [Player::where('user_id', $this->product->seller_id)->first()->group_id];
}
}
这里是我的侦听器,它没有任何内容,因为我希望所有内容都成为客户端处理程序
<?php
namespace App\Listeners;
use App\Events\NewPurchase;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
class NewPurchaseListener implements ShouldQueue
{
/**
* Create the event listener.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Handle the event.
*
* @param NewPurchase $event
* @return void
*/
public function handle(NewPurchase $event)
{
//
}
}
这是我的.env
BROADCAST_DRIVER=pusher
PUSHER_APP_ID=858577
PUSHER_APP_KEY=ec160cc0a1ca15e463f4
PUSHER_APP_SECRET=
QUEUE_DRIVER=sync
这是我的活动服务提供商
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
protected $listen = [
'App\Events\NewPurchase' => [
'App\Listeners\NewPurchaseListener',
],
];
这是触发事件的地方
Event::fire(new NewPurchase($product));
答案 0 :(得分:0)
我的问题是我的Laravel版本没有从以前的开发人员那里更新。因此,我最初使用的Pusher版本与我使用的Laravel版本不兼容。我现在对此进行了调整,并且可以正常工作。