DataMapper(Overzealous版)和带有属性的多对多
我想使用 datamapper overzealous 版本创建与属性的关系。
我有2个主要模型: - 角色(角色表) - 策略(策略表)
一个角色可以有多个策略,一个策略可以有多个角色。
为此,我创建了一个包含 role_id 和 policy_id 的关系表。 我还向该表添加了一个属性(名为权限),它是一个布尔值,指示是否允许特定角色中的特定策略。
我如何写入/更新/读取该值?
$role->policy->get();
仅向我提供策略表内的所有信息。相反,我希望获得策略表和关系表内的信息。
感谢您的帮助! :)
I'd like to create a relationship with an attribute using datamapper overzealous edition.
I have 2 main models:
- Role (roles table)
- Policy (policies table)
a role can have many policies and a policy can have many roles.
To do so I created a relationship table with role_id and policy_id.
I also added to this table an attribute (named permission) that is a boolean value that indicate me if a specific policy in a specific role is allowed or not.
How can I write/update/read this value?
$role->policy->get();
gives me only all information inside policies table. Instead I'd like to have the informations inside policies table and of the relationship table.
Thanks for the help! :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不知道您是否找到了答案,但您可以通过
get_join_fields()
和set_join_fields()
方法访问连接表中的额外字段。您可以在文档中找到更多信息。Don't know if you found the answer yet, but you can access the extra field(s) in a join table through the
get_join_fields()
andset_join_fields()
methods. You can find more information in the documentation.