我正在使用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()
答案 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中的一件事,这是我见过的第一件事。