为什么此多态关联的source_type始终为0?

时间:2014-02-27 11:59:16

标签: ruby-on-rails ruby-on-rails-4 has-many-through polymorphic-associations

由于某些原因,多态has_many :through关联的源类型始终为0,尽管设置了:source_type

这是我的模特的样子......

富:

has_many :tagged_items, :as => :taggable
has_many :tags, :through => :tagged_items

栏:

has_many :tagged_items, :as => :taggable
has_many :tags, :through => :tagged_items

TaggedItem:

belongs_to :tag
belongs_to :taggable, :polymorphic => true

标签:

has_many :tagged_items
has_many :foos, :through => :tagged_items, :source => :taggable, :source_type => "Foo"
has_many :bars, :through => :tagged_items, :source => :taggable, :source_type => "Bar"

尽管我可以说这是一个非常精细的设置,但我能够创建/添加标签,但taggable_type总是最终为0。

任何想法都是为什么?谷歌一无所获。

2 个答案:

答案 0 :(得分:5)

找到问题模型测试的工作示例here

它不能解决问题的原因是应该像这样生成迁移db/migrate/[timestamp]_create_tagged_items

class CreateTaggedItems < ActiveRecord::Migration
  def change
    create_table :tagged_items do |t|
      t.belongs_to :tag, index: true
      t.references :taggable, polymorphic: true

      t.timestamps
    end
  end
end

请注意,t.references :taggable, polymorphic:true会在schema.rb上生成两列:

t.integer  "taggable_id"
t.string   "taggable_type"

因此,在问题和迁移中使用相同的模型,以下测试通过:

 require 'test_helper'

 class TaggedItemTest < ActiveSupport::TestCase
  def setup
    @tag = tags(:one)
  end

  test "TaggedItems have a taggable_type for Foo" do
    foo = Foo.create(name: "my Foo")
    @tag.foos << foo

    assert TaggedItem.find(foo.id).taggable_type == "Foo"
  end


  test "TaggedItems have a taggable_type for Bar" do
    bar = Bar.create(name: "my Bar")
    @tag.bars << bar

    assert TaggedItem.find(bar.id).taggable_type == "Bar"
  end
end

注意:Rails 3存在关于has_many :through和多态关联的活动问题,如here所示。虽然,在Rails 4中,这已经解决了。

PS:自从我对这个问题做了一些研究之后,我不妨发布答案以防万一有人可以从中受益......:)

答案 1 :(得分:4)

自己想出这个,只是回答,因为我确定我不是第一个或最后一个犯这个愚蠢错误的人(实际上我之前可能已经做过)。我将taggable_type字段的列类型作为整数而不是字符串。

您认为这可能会导致错误,但事实并非如此。它只是不起作用。