CakePHP - 仅当用户(ARO)具有页面权限时才显示链接?
我正在使用 CakePHP 的 ACL 组件来管理我的应用程序的权限。我有大约三个不同的“角色”,具有不同的访问级别。我自始至终都使用 HTML 帮助器来创建指向不同页面的链接。我希望链接仅在用户有权访问该页面时显示。
我想,明显但麻烦的方法是为包含权限的视图设置变量,并根据这些变量显示链接。
我想知道是否有更好的方法 - 也许是一个扩展 HTML 帮助程序以提供首先检查权限的方法的帮助程序?
谢谢。
I'm using CakePHP's ACL component to manage permissions for my app. I have about three different "Roles", with different access levels. I am using the HTML helper throughout, to create links to different pages. I would like links to only display if the user has permission to access the page.
The obvious but cumbersome approach, I guess, would be to set variables to the view containing permissions and show links based on these variables.
I was wondering if there is a better way - perhaps a helper that extends the HTML helper to provide a method that checks permissions first?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不建议使用具有此类功能的助手。
这是因为这个助手必须检查您在该页面上使用的每个链接。这会减慢您的应用程序。
所以我认为最好的方法就是你的方法。设置登录权限并相应地显示您的链接。
我们也在我们的应用程序中使用它,它运行得非常好且快速。
I wouldn't recommend to use a helper which has this sort of functionality.
This is because this helper would have to do the checking on every link you use on that page. This would slow down your application.
So I think the best approach is your approach. Set the permission on login and display your links accordingly.
We are using this in our application, too, and it works very good and fast.