CakePHP 对 ACL 的混淆
在 CakePHP 网站上,它显示您将使用 ACL 为用户和用户组创建用户表和组表: http://book.cakephp.org/view/1544/Preparing-our-Application
然而,大多数其他教程(例如 NetTuts)显示创建三个表(除了用户表之外)来使用 ACL : http://net.tutsplus.com /tutorials/php/how-to-use-cakephps-access-control-lists/
两者有什么区别?坦尔斯
On the CakePHP website it shows that you would create a users table and a groups table for users and user groups using ACL: http://book.cakephp.org/view/1544/Preparing-our-Application
However most other tutorials e.g. NetTuts shows creating three tables (in addition to the users table) to use ACL: http://net.tutsplus.com/tutorials/php/how-to-use-cakephps-access-control-lists/
What is the difference between the two? Thanls
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您询问名为 Acos、Aros 和 aros_acos 的额外表,
在两个教程中我们都需要使用这些表。在 cakephp.org 中。有一个名为 初始化 Db Acl 表 的部分,其中他们运行命令来创建这些表。就像在 nettuts 中一样,他们向我们展示了手动创建它。
无论如何,cakePHP 需要 5 个表才能完美运行 ACL。其中 Acos、Aros 和 aros_acos 是 cakePHP 定义的表,用户和组 是用户定义的表。
CakePHP 将用户权限存储为带有 Aros 的树(访问请求对象表示用户)与 Acos 的 hasAndBeongsToMany 关系(访问控制对象表示操作)
if you are asking about the extra tables named Acos,Aros and aros_acos
In both tutorial we need to use these tables.In the cakephp.org. there is a section called Initialize the Db Acl tables where they running a command to create those tables. where as in nettuts they showing us creating it manually.
Any way cakePHP need 5 tables to run the ACL perfectly.In that Acos,Aros and aros_acos are cakePHP defined tables and Users and Groups are user defined tables.
CakePHP is storing the User permissions as a Tree with Aros(Access Request Objects means users) hasAndBeongsToMany relation with Acos (Access Control Objects means actions)