has-many-through

has-many-through

文章 0 浏览 6

如何根据 has_many :through 关系的属性找到 Rails 对象?

模型:Foo、Bar、Bonk class Foo < ActiveRecord::Base has_many :bars has_many :bonks, :through => :bars end class Bar < ActiveRecord::Base has…

寻找我们的幸福 2024-11-15 09:00:11 3 0

Rails has_many :通过自定义foreign_key

我有以下一组模型: class Cardstock < ActiveRecord::Base has_many :color_matches, :primary_key => :hex, :foreign_key => :hex has_many :palett…

一梦浮鱼 2024-11-14 23:34:17 3 0

ActiveRecord 根据列表中具有值的关联记录进行条件查找

使用以下 Rails 模型: class Group < ActiveRecord::Base has_many :group_locations, :dependent => :restrict has_many :locations, :through => :…

醉态萌生 2024-11-14 14:17:46 3 0

has_many 直通和多态关系

我不知道这是否可能,但这里是: FruitBasket has_many :apples has_many :bananas ######## What to put here to access Worm through its pest_hold…

jJeQQOZ5 2024-11-14 09:57:26 4 0

在视图中,如何通过 has_many 关系获取 Rails 中连接模型的 id?

如果我有两个模式加入有两个关系,可以说(团队和玩家)并且它们通过(阵容)加入, 有没有办法在调用类似以下内容后访问视图中的加入模型 id (lineup…

云淡月浅 2024-11-13 07:11:10 2 0

ruby on Rails after_remove、after_add 上的 has_many 回调:through

我有一个符合以下模式的模型: class foo < ActiveRecord::Base has_many :bar, :dependent => :destroy has_many :baz, :through => :bar, :uniq => …

你的心境我的脸 2024-11-13 06:39:39 3 0

由于批量赋值保护,编写 has_many :through 与 :conditions 关联失败

我有 3 个类:组和用户,通过名为“成员资格”的连接表连接。成员资格有一个属性“角色”,它告诉我们用户在组中扮演的角色。 一个组 has_many :leade…

怪我太投入 2024-11-13 05:54:37 2 0

从 Rails 2 升级后,has_many _through 在 Rails 3 中不起作用

我的控制器中有以下内容: @campaign = Campaign.where(:id => params[:id]) @companies = @campaign.companies.sort { |a,b| a.name b.name` } 第二…

救星 2024-11-11 05:44:03 6 0

Rails 关联通过 has_many 进行预加载:through

我很难找到将 A 类链接到 E 类的方法。以下是隐含的类: A 有许多 B B 属于 A B 属于 C A 通过 B 有许多 C C有很多D D 属于 C D 属于 E 类名 C C has_…

三寸金莲 2024-11-10 12:01:48 7 0

has_many :通过不授予对基类的 _id 的访问权限

模型代码 class Location < ActiveRecord::Base attr_accessible :day_tokens, :name, :address, :phone has_many :locavailability has_many :dayava…

み零 2024-11-09 08:02:09 8 0

父记录中的多个外键 (Rails)

我正在尝试摆脱连接表,转而采用对于大型数据集更快的数据库设计。我计划执行此操作的方法是将孩子的 id 存储在父记录中。 像这样: 父母表: id, chi…

傲鸠 2024-11-09 07:59:28 5 0

型号->有_许多->两次

因此,注释、组和用户之间的关系有些令人困惑。最后我在模型中出现了两次 has_many 。但我目前专注于 Note & 笔记。团体关系。 背景:一个组可以有一…

夏至、离别 2024-11-09 03:48:12 6 0

删除 has_many :through 通过链接关联

我正在尝试删除通过 Appearance 模型关联的 Actor 和 Movie 之间的关联。我想通过单击演员编辑页面上的链接来完成此操作。我找到了需要使用的方法 (@a…

追我者格杀勿论 2024-11-09 03:19:12 2 0

返回自引用的源对象 has_many, :through

这是我的用户模型: class User < ActiveRecord::Base has_many :friends, :class_name => 'Friendship', :dependent => :destroy end 这是我的友谊模…

路弥 2024-11-05 01:28:20 6 0

Rails 3 授权

我正在尝试弄清楚如何在 Rails 3 应用程序上执行授权。我使用的是 CanCan,但我需要比一个用户角色更复杂一点。 我的应用程序有一个用户模型、项目模…

囚我心虐我身 2024-11-04 21:06:22 7 0
更多

推荐作者

Promise

文章 0 评论 0

qq_lbRlsh

文章 0 评论 0

待"谢繁草

文章 0 评论 0

yy2010hell

文章 0 评论 0

漫无边际

文章 0 评论 0

傲娇萝莉攻

文章 0 评论 0

更多

友情链接

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