私は2つのモデルを持っています:
Class Foo
field :title
end
Class Bar
field :description
end
IRBで私は試しました:
1.9.3p125 :001 > f = Foo.new(title: "<%= bar.description %>")
=> #<Foo _id: 506b2de61d41c84b07000002, _type: nil, title: "<%= bar.description %>">
1.9.3p125 :002 > f.save
=> true
1.9.3p125 :004 > f.title
=> "<%= bar.description %>"
Object Bar
属性をどのように入れるのf.title
ですか?
出来ますか?