Rails 带有条件的嵌套连接
我有以下联接表和(相关模型和表)
- roles_users:user_id,role_id
- requests_roles:role_id,permission_id,object_id,object_type
对于给定的用户,权限和对象,我想查找用户是否具有关联的权限一个对象通过它的角色。
任何有关相关查询的帮助将不胜感激。
I have the following join tables and (relevant models and tables)
- roles_users : user_id, role_id
- permissions_roles : role_id, permission_id, object_id, object_type
For a given user, permission and object, I would like to like to find if user has an associated permission for an object via its roles.
Any help with the relevant query would be much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设你有用户和对象,这样怎么样:
Given you have the user and the object, how about this:
尝试一下:
现在您可以按如下方式检查权限:
Try this:
Now you can check the permission as follows: