has-many-through

has-many-through

文章 0 浏览 6

Rails 3.1 模型通过命名问题使用 has_many - ThisIsModelName.rb

我需要为汽车和商店创建一个名为 CarStoreTracker 的连接模型,两者都有很多彼此。 class Car < ActiveRecord::Base has_many :carstoretrackers # It…

不一样的天空 2024-12-25 18:33:42 0 0

ruby Rails 3.0.x has_many 仅在创建时出现异常,其他操作正常

以下模型适用于读取、更新和删除,但不适用于创建。 class Space < ActiveRecord::Base has_many :space_prices, :dependent => :destroy accepts_nes…

孤蝉 2024-12-25 03:48:21 1 0

需要通过Rails上的has_many带回中间模型和终端模型的信息

我有以下模型: school.rb class School < ActiveRecord::Base has_many :offers has_many :players, :through => :offers has_many :teammembers, :c…

高跟鞋的旋律 2024-12-24 20:08:21 1 0

Rails中通过关系2转1 has_many(如何将三个模型连接在一起)

连接以下三个模型的最佳方式是什么? class Tournament < ActiveRecord::Base has_many :submissions has_many :creatures, :through => :submissions…

守望孤独 2024-12-24 03:54:09 2 0

用于销毁 has_many 的视图/控制器:通过关联

我有用户、团队和 TeamMemberships,它们与 has_many :through 关联。 我正在尝试添加从团队中删除用户的功能,这需要销毁关联他们的 TeamMembership …

完美的未来在梦里 2024-12-23 21:00:53 1 0

has_many :through 关联的 Rails 复选框

一个人可以参加各种赛事,但他们必须输入该赛事的合作伙伴的名字。该关联存储在一个条目中,该条目包含一个合作伙伴姓名字段。 class Person < Active…

旧竹 2024-12-23 15:43:11 0 0

has_many :through 不会保存到数据库

我有一个 Item & 协会通过分类进行分类: class Item < ActiveRecord::Base has_many :categorizations has_many :categories, :through => :categori…

抽个烟儿 2024-12-23 10:44:44 0 0

has_many :通过两个值的查询

假设我有: class Post has_many :tags, :through => :taggings has_many :taggings end 请注意,没有 :include。现在假设我想检索同一查询中的所有标…

病毒体 2024-12-22 22:36:21 0 0

Rails has_many :through 具有别名关联的条件

这种情况与我最初的问题有关has_many :through 有条件,但我发现了另一个问题。 鉴于此类: class Contact < AR has_many :group_contacts has_many :…

旧人 2024-12-22 19:29:02 0 0

Rails:ActiveRecord :: HasManyThroughSourceAssociationNotFoundError:找不到源关联

我有以下代码(有些简化... create_table :signatures do |t| t.integer :signer_id t.integer :card_id t.timestamps end 模型看起来像... class Sig…

无人问我粥可暖 2024-12-22 12:01:29 0 0

如何在 Factory Girl 中创建与 has_many :through 关系的关联?

在我的模型中,我有以下设置: class User < ActiveRecord::Base has_many :assignments has_many :roles, :through => :assignments end class Role …

不再见 2024-12-22 09:06:21 0 0

Rails 命名约定存在问题

我想我在我的应用程序中遵循了 Rails 命名约定。但是当我在终端测试代码时,我遇到了一些违反命名约定的错误。这是我的终端会话: irb(main):010:0> a…

紫瑟鸿黎 2024-12-21 19:44:02 1 0

Has_many :通过关联

我使用 has_many :through 与三个模型建立了关系: class Curriculum class < ActiveRecord::Base has_many :interests has_many :vacancies,: throug…

云裳 2024-12-21 00:36:18 3 0

在Rails 3.1中,当类别通过 :has_many, :through 关联时,如何找到具有指定类别的商店

在我的商店模型中,我有以下内容: class Store < ActiveRecord::Base has_many :categorizations has_many :categories, :through => :categorizatio…

往昔成烟 2024-12-20 02:33:50 1 0

如何在自引用 has_and_belongs_to_many 中查找没有父项的条目?

两个模型,第一个是自引用的: def Page < ActiveRecord::Base has_many :source_page_relations, :class_name => 'PageRelation', :foreign_key => :…

冷︶言冷语的世界 2024-12-19 23:01:06 2 0
更多

推荐作者

忆悲凉

文章 0 评论 0

hgfg1645

文章 0 评论 0

qq_qLPLYi

文章 0 评论 0

戏舞

文章 0 评论 0

殊姿

文章 0 评论 0

﹂绝世的画

文章 0 评论 0

更多

友情链接

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