Kohana 启动控制器
我需要检查每个页面上的用户有效性。我是否需要一个控制器来在每个页面上检查这一点,或者有更简单的方法吗?我需要创建一个每次加载的基本控制器吗?
I need to have a check for user validity on every page. Do I need a controller that checks this on every page or there is a simpler way of doing it? Do I need to create a base controller that is loaded each time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常就是这样做的。只需扩展一个基类来检查 before 方法的有效性。
下面是一个例子:
classes/controller/base.php
:classes/controller/welcome.php
:在基本控制器的 before 方法中,可以检查登录情况用户和权限,例如显示一条错误消息,表明他们无权访问该页面。
That is how it usually is done. Just extend a base class which checks the validity on the before method.
Here is an example:
classes/controller/base.php
:classes/controller/welcome.php
:In the before method of the base controller, you can check the signed in user and permissions, and for example show an error message that they don't have access to that page.