Kohana 3.1 中每个请求需要执行的代码放置在哪里
在 Kohana 3.1 中,放置需要在每个请求上执行的代码的最佳位置在哪里?就我而言,它需要管理 ACL,以便在用户未经授权时我可以阻止该请求。
In Kohana 3.1, where is the best place to put code that needs to be be executed on every request? In my case, it needs to manage the ACL so that I can block the request if the user is not authorized.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其放入
Controller
类中,并实现其before()
方法。Put it to
Controller
class, and implement itsbefore()
method.