DataMapper(Overzealous版)和带有属性的多对多

发布于 2024-10-04 16:47:34 字数 350 浏览 0 评论 0原文

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寂寞花火° 2024-10-11 16:47:35

不知道您是否找到了答案,但您可以通过 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() and set_join_fields() methods. You can find more information in the documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文