gpt4 book ai didi

php - Laravel 无法排队作业

转载 作者:行者123 更新时间:2023-12-02 05:20:57 24 4
gpt4 key购买 nike

当我尝试将作业推送到我的 Laravel 队列时,我反复收到以下错误:

Argument 1 passed to Illuminate\Queue\Jobs\Job::resolveAndFire() must be of the type array, null given, called in /home/vagrant/Code/project/vendor/laravel/framework/src/Illuminate/Queue/Jobs/BeanstalkdJob.php on line 53 and defined

我不知道出了什么问题,但我猜这与我没有使用 SerializesModel Trait 这一事实有关?当我尝试使用 Serializes 模型时,我只是得到一个未定义的属性 $directory 错误。

工作类是:

/**
* Class StoreFile
* @package App\Jobs
*/
class StoreFile extends Job implements SelfHandling, ShouldQueue
{
use InteractsWithQueue;

/**
* @param string $directory
* @param string $filename
* @param UploadedFile $file
*/
public function __construct($directory, $filename, $file)
{
$this->directory = $directory;
$this->filename = $filename;
$this->file = $file;
}

/**
* @param FileSystem $storage
* @return boolean
*/
public function handle(FileSystem $storage)
{
$path = $this->directory . $this->filename;
$storage->disk('s3')->put($path, $this->file);

return true;
}
}

更新我使用这个从另一个类(class)排队作业:

$this->dispatch(new StoreFile($directory, rawurlencode($filename), file_get_contents($evidence)));

其中 $evidence 是一个 UploadedFile。我确定所有变量都设置为好像我删除了 ShouldQueue/InteractsWithQueue 作业执行正常

最佳答案

在我的例子中,这是因为作业表有一个有效负载“0”而不是用于执行作业的 JSON。

关于php - Laravel 无法排队作业,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31941638/

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