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 rvice provider during the application boot process…the middleware provide a conv感动在我身边enient location to wrap jobs in some logic before they are executed.
我们可以在 job 类中定义middleware()
方法来设置对应的中间件,该方法返回的是中间件对象实例数组,因此可以定义多个中间件:
public function middleware(){ return [new somemiddleware];}
下面是中间件的示例代码,与之前的中间件定义并无大的区别,只是将$request 参数替换成了$command
:
class som如果没有你 吉他谱emiddleware{ public function handle($command, $next) { // do something... retur中国传统节日的作文n $next($command); }}
此外,还可以在分发任务时动态指定中间件,这些中间件会自动和定义在该任务类的middleware()
方法返回的中间件合并:
somejob::dispatch()->through([new somemiddleware]);
该特性将会在本月底发布的laravel 6 中提供,你可以在这个pull request 中查看更多细节。
班级活动总结
以上所述是www.887551.com给大家介绍的laravel 6 将新增为指定队列任务设置中间件的功能,希望对大家有所帮助
本文发布于:2023-04-07 14:00:52,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/8022aaee36e7b9add77515fa25e05017.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:Laravel 6 将新增为指定队列任务设置中间件的功能.doc
本文 PDF 下载地址:Laravel 6 将新增为指定队列任务设置中间件的功能.pdf
留言与评论(共有 0 条评论) |