如何找到满足某一条件的父母(Adonis Lucid Many-to-Many)子记录的存在?
我正在尝试查找单父角色(多对多)上是否存在某些权限。
const roles = await Role
.query()
.preload('permissions')
this.role = roles.find(role => role.id === someid)
const exists = this.role.permissions.some(permission => permission.name === 'something')
这是迄今为止的解决方案,似乎不是最佳的。 有没有一种方法可以做到这一点,而无需加载所有角色和权限并在 Javascript 中循环它们? 太感谢了
I'm trying to find existence of certain Permissions on a single parent Role (many-to-many).
const roles = await Role
.query()
.preload('permissions')
this.role = roles.find(role => role.id === someid)
const exists = this.role.permissions.some(permission => permission.name === 'something')
This is the solution so far, which seems not optimal.
Is there a way to do this without loading all the roles and permissions and looping through them in Javascript?
Thank you so much
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 whereHas (https://docs.adonisjs.com/reference/orm/查询构建器#wherehas):
Try using whereHas (https://docs.adonisjs.com/reference/orm/query-builder#wherehas):