当前位置:首页 > CMS教程 > 其它CMS > 列表

Laravel 6 将新增为指定队列任务设置中间件的功能

发布:smiling 来源: PHP粉丝网  添加日期:2021-12-09 15:41:59 浏览: 评论:0 

Taylor Otwell 在 Laravel 6 中新增了为指定队列任务设置中间件的能力,以便我们在执行某些队列任务之前先执行一些业务逻辑:

This [pull request] adds an easy way to have job specific middleware for queued jobs. Global job middleware were actually already possible by calling Bus::pipeThrough([]) in a service provider during the application boot process…These middleware provide a convenient location to wrap jobs in some logic before they are executed.

我们可以在 Job 类中定义 middleware() 方法来设置对应的中间件,该方法返回的是中间件对象实例数组,因此可以定义多个中间件:

  1. public function middleware() 
  2.    return [new SomeMiddleware]; 

下面是中间件的示例代码,与之前的中间件定义并无大的区别,只是将 $request 参数替换成了 $command :

  1. class SomeMiddleware 
  2.   public function handle($command$next
  3.   { 
  4.     // Do something... 
  5.  
  6.     return $next($command); 
  7.   } 

此外,还可以在分发任务时动态指定中间件,这些中间件会自动和定义在该任务类的 middleware() 方法返回的中间件合并:

SomeJob::dispatch()->through([new SomeMiddleware]);

该特性将会在本月底发布的Laravel 6 中提供,你可以在这个 Pull Request 中查看更多细节。

Tags: Laravel队列任务 Laravel中间件

分享到: