gpt4 book ai didi

php - 拉维尔 5.8 : How to pass two arguements to Event & Listener

转载 作者:行者123 更新时间:2023-12-05 06:00:32 25 4
gpt4 key购买 nike

我正在使用 Laravel 5.8,我创建了一个名为 UserWalletNewTransaction 的事件,如下所示:

public $transaction;
public $added_type;

public function __construct($transaction, $added_type)
{
$this->transaction = $transaction;
$this->added_type = $added_type;
}

如您所见,我在这里指定了两个参数,这些参数从 Controller 获取它们的值:

event(new UserWalletNewTransaction($newTransaction, $value_added_type));

然后名为 UserWalletNotification 的监听器如下所示:

公共(public)函数句柄(UserWalletNewTransaction $event, $added_type){

但是这里有问题,因为我收到了这个错误。

Too few arguments to functionApp\Listeners\UserWalletNotification::handle(), 1 passed and exactly 2expected

那么如何解决这个问题呢?如何正确地将两个参数传递给 Event & Listener?我真的很感激你们的任何想法或建议...

错误截图如下:

enter image description here


更新#1:

结果:

dump($event->added_type);
dd($event->transaction );

enter image description here

最佳答案

UserWalltetNotification 监听器中从 handle 方法中移除第二个参数

所以

public function handle(UserWalletNewTransaction $event)
{

dump($event->added_type);
dd($event->transaction );


}

如果您dd($event);,您将从UserWalletNewTransaction获取所有属性

关于php - 拉维尔 5.8 : How to pass two arguements to Event & Listener,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67657803/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com