处理存储有不同数据的多个用户组的最佳方法?
我正在创建一个将使用多种类型的用户(例如管理员、经理、用户)的 Web 应用程序。每个用户都需要存储有关他们的不同信息,有些信息在每种用户类型中都是相同的(即用户名、密码、电子邮件),而其他信息则不同。
我想知道在使用 ACL 和 ACL 的同时拥有数据库的最佳方式。 CakePHP 中的身份验证组件。我看到两种可能的解决方案:
- 有三个表,每个用户类型对应一个表。
- 有五张桌子。一个用户表、一个组表,然后是包含每种用户类型的额外字段的三个表。
我看到 1 的问题是,我不确定 CakePHP 使用不同的权限模型而不是使用组表有多容易。所以,我认为第二个解决方案将是最容易设置的,也许也是最容易维护的,但是 3 个额外的表是否有太多的开销?还是有我没有想到的更好的解决方案?
I'm creating a web application that will use multiple types of users (e.g. Admin, Managers, Users). Each user will require different pieces of information stored about them, some will be the same across each user type (i.e. username, password, email) and others will be different.
I'm wondering the best way to have the database, whilst using the ACL & Auth components in CakePHP. I see 2 possible solutions:
- Have three tables, one for each user type.
- Have five tables. A user table, a groups table, and then three tables containing the extra fields for each user type.
The problem I see with 1 is, I'm not sure how easy it is for CakePHP to use different models for permissions, instead of using a groups table. So, I think the second solution will be the easiest to set up, and maybe maintain, but is there too much overhead with the 3 extra tables? Or is there a better solution that I haven't thought about?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个名为 user_data 的属于用户的表,其中包含以下列:
User HasMany UserData 和 UserData BelongsTo User
See http://book.cakephp.org/view/1043/hasMany 和 http://book.cakephp.org/view/1042/belongsTo 了解如何设置关系数据。
然后,在控制器中,您可以使用可包含行为获取自定义数据:
在视图中(可能最好将其设为辅助函数)
You could create a table that belongsTo User called user_data with the columns:
User HasMany UserData and UserData BelongsTo User
See http://book.cakephp.org/view/1043/hasMany and http://book.cakephp.org/view/1042/belongsTo for reference on how to setup relational data.
Then, in controller, you can fetch the custom data with Containable behavior:
In the view (Probably best to make this a helper function)