cakephp Auth 或 Acl 来管理我的 Web 应用程序
嘿 我是蛋糕新手,现在我开始构建我的第一个项目 并成功使用 Auth 组件和下一步 我想创建权限组,我在 book.cakephp 中阅读了 Acl 并 我迷惑在其中。我尝试以其他方式搜索我发现的 auth 组件可以完成,我将来有疑问 如果我的项目有很多功能和表 Auth 或 Acl 的东西可以更好地管理它。
我必须研究说明并对
我糟糕的英语说抱歉
hey
I'm new in cake and now I initial build my first project
and succesful to use Auth component and next step
I want to make permission group and I read Acl in book.cakephp and
I confused in it . and I try to search other way I found
the auth component It can be done and I have question in future
if my project have many feature and table
Auth or Acl thing that can manage it better.
I will have to study the instructions and use
sorry to my bad english
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AuthComponent 用于验证和管理用户与应用程序的连接。如果您的系统中只有一种类型的用户,则只需要使用 AuthComponent。
ACL 用于管理经过身份验证的用户是否可以访问系统中给定的对象/操作。 ACL 需要 AuthComponent(或其他验证和会话管理工具)首先验证用户的实际身份。换句话说,如果你需要ACL,那么你也需要AuthComponent。
AuthComponent is used to verify and manage a user's connection to your application. If you only have one type of user in your system, you only would need to use AuthComponent.
ACL is used to manage whether or not an authenticated user can access a given object/action in the system. ACL requires AuthComponent (or another verification and session management tool) to first verify who the user actually is. In other words, if you need ACL, you need AuthComponent too.