Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有控制器,它使用在单独的类中编码的外部过滤器。onCreate()该过滤器在控制器的执行方法之前执行验证。但是在为创建操作执行过滤器之后,我需要获取此过滤器对象的属性。
onCreate()
如何onCreate()在控制器的方法中获取外部过滤器的属性?
在过滤器方法preFilter中,您可以通过$filterChain->controller. 这意味着您可以设置所需的任何控制器属性并在onCreate控制器方法中使用它。
preFilter
$filterChain->controller
onCreate
我希望这有帮助。