drci47425 2019-03-04 20:21 采纳率: 100%
浏览 207
已采纳

PHP - 作业/队列 - 类调度不存在

I am trying to use queues in Laravel, and have installed Redis and Horizon for this purpose.

My users can upload images through a frontend. When this happens, it calls a store method:

public function store(Stream $stream)
{
    //Validate the request.
    $validate = request()->validate([
        'file' => 'mimes:jpeg,jpg,bmp,png,gif,pdf',
    ]);

    ImportDocuments::dispatch($stream);
}

In my Jobs/ImportDocuments.php class, I have this code:

class ImportDocuments implements ShouldQueue
{
    use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;

    protected $stream;

    /**
     * Create a new job instance.
     *
     * @param  Document  $document
     * @return void
     */
    public function __construct(Stream $stream)
    {
        $this->stream = $stream;
    }

    /**
     * Execute the job.
     *
     * @return void
     */
    public function handle()
    {
        //Store the actual document. returns the path.
        $store = request()->file('file')->store($this->stream->token);

        //Set the attributes to save to DB.
        $attributes['name'] = request()->file->getClientOriginalName();
        $attributes['path'] = $store;

        //Add the document to the database.
        $this->stream->addDocuments($attributes);
    }
}

For your reference, the addDocuments() method look like this:

Stream.php:

public function addDocuments(array $attributes)
{
    return $this->documents()->create($attributes);
}

Whenever I try to upload an image, I get below error:

Class dispatch does not exist {"userId":1,"email":"myemail@myapp.com","exception":"[object] (ReflectionException(code: -1): Class dispatch does not exist at /Users/MyUsername/Sites/playground/vendor/laravel/framework/src/Illuminate/Container/Container.php:779)
  • Redis is running
  • predis/predis is installed
  • Horizon is running
  • Horizon status says 'Active'

What am I doing wrong here?

  • 写回答

1条回答 默认 最新

  • dongyuans61046 2019-03-05 08:57
    关注

    OK the answer was actually quite simple, yet very frustrating.

    I am using valet with Laravel, and was accessing my site at: mywebsite.test. I tried to load it through:

    php artisan serve, and then tried the exact same thing, just from the IP (127.0.0.1) - and then it worked!

    So I just restarted valet, and then it worked there as well.

    valet restart
    

    And bam it worked..

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 导入文件到网吧的电脑并且在重启之后不会被恢复
  • ¥15 (希望可以解决问题)ma和mb文件无法正常打开,打开后是空白,但是有正常内存占用,但可以在打开Maya应用程序后打开场景ma和mb格式。
  • ¥15 绘制多分类任务的roc曲线时只画出了一类的roc,其它的auc显示为nan
  • ¥20 ML307A在使用AT命令连接EMQX平台的MQTT时被拒绝
  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?