我正在使用rails 4.1.0编写一个简单的应用程序。我创建了两个名为Serie和Event的模型,它们之间有一对多的关系(在一个Serie中有许多事件)。
class Serie < ActiveRecord::Base
has_many :events
end
class Event < ActiveRecord::Base
belongs_to :serie
end
我为这些模型创建了以下fixture文件:
#series.yml
---
Serie1:
name: Whatever
#events.yml
---
EventSerie11:
date: 2013-01-01
value: '124.4'
serie: Serie1
EventSerie12:
date: 2013-02-01
value: '124.2'
serie: Serie1
问题是当我使用rake db:fixtures:load
加载这些灯具时,我得到了错误的事件对象的外键:
$ rails c
Loading development environment (Rails 4.1.0)
2.1.1 :001 > Serie.first.id
Serie Load (0.2ms) SELECT "series".* FROM "series" ORDER BY "series"."id" ASC LIMIT 1
=> 10
2.1.1 :002 > Serie.first.events.count
Serie Load (0.3ms) SELECT "series".* FROM "series" ORDER BY "series"."id" ASC LIMIT 1
(0.2ms) SELECT COUNT(*) FROM "events" WHERE "events"."serie_id" = ? [["serie_id", 10]]
=> 0
2.1.1 :003 > Event.first.serie
Evento Load (0.2ms) SELECT "events".* FROM "events" ORDER BY "events"."id" ASC LIMIT 1
Serie Load (0.3ms) SELECT "series".* FROM "series" WHERE "series"."id" = ? LIMIT 1 [["id", 627975337]]
=> nil
2.1.1 :004 > Evento.first.serie_id
Evento Load (0.4ms) SELECT "eventos".* FROM "eventos" ORDER BY "eventos"."id" ASC LIMIT 1
=> 627975337
所以你看到所有灯具都在加载,但事件记录被分配了一个不正确的serie_id外键(因为我使用sqlite进行开发,所以没有约束检查)。据我所知,每次重置数据库并加载灯具时,Serie记录都会获得一个新ID,但每个事件记录的serie_id字段始终设置为627975337。
我读了here您可以指定灯具的加载顺序;但添加线
ENV["FIXTURES"] ||= "series,events"
到我的environment.rb文件不起作用,也没有运行
rake db:fixtures:load FIXTURES=series,events
有什么想法吗?
答案 0 :(得分:4)
我认为rails与series
的类/灯具名称混在一起。它试图寻找一个名为Series
的模型类,因为它很难将你的复数名称单一化。 (系列是英语中的单词,复数与单数相同)。
我强烈怀疑数据库中的Serie
实例与您的夹具加载完全无关,而是通过其他方法创建的实例。
您的活动装置中使用的serie_id
是正确的。使用的id使用以下公式计算:
> ActiveRecord::FixtureSet.identify(:Serie1)
=> 627975337
您可以看到的与灯具中使用的值相同。
所以,一个解决方案,你可以进入活动记录的内容并覆盖加载灯具的rake任务 - 或者你可以定义你的单数/复数版本&#34; serie&#34; /&#34 ;系列&#34;成为你想要的而不是铁轨猜测的东西。在config/application.rb
或初始值设定项中,您可以添加:
ActiveSupport::Inflector.inflections do |inflect|
inflect.irregular 'serie', 'series'
end