如何访问失败的Laravel排队作业中抛出的异常

时间:2016-10-17 11:02:37

标签: php laravel

我正在使用Laravel 5.2 Job并对其进行排队。当它失败时会触发作业上的failed()方法:

class ConvertJob extends Job implements SelfHandling, ShouldQueue
{
    use InteractsWithQueue, DispatchesJobs;


    public function __construct()
    {

    }

    public function handle()
    {
        // ... do stuff and fail ...
    }

    public function failed()
    {
        // ... what exception was thrown? ...
    }
}

failed()方法中,如何访问Job失败时引发的异常?

我知道我可以在handle()中捕获异常,但我想知道它是否可以在failed()

中访问

2 个答案:

答案 0 :(得分:4)

您可以使用以下代码:

public function failed(Exception $exception)
{
    // Send user notification of failure, etc...
}

但是它可以从laravel 5.3中获得。版。对于较旧的laravel版本,您可以使用一些不太雅致的解决方案,例如建议使用@Capitan Hypertext。

答案 1 :(得分:0)

这应该有效

public function handle()
{
    // ... do stuff
    $bird = new Bird();

    try {
        $bird->is('the word');
    }
    catch(Exception $e) {
        // bird is clearly not the word
        $this->failed($e);
    }
}

public function failed($exception)
{
    $exception->getMessage();
    // etc...
}

我假设你做了failed方法?如果这是Laravel中的一件事,这是我见过的第一件事。