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..

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

报告相同问题?

悬赏问题

  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改
  • ¥20 wireshark抓不到vlan
  • ¥20 关于#stm32#的问题:需要指导自动酸碱滴定仪的原理图程序代码及仿真
  • ¥20 设计一款异域新娘的视频相亲软件需要哪些技术支持
  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效