我有两个模型:
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
属性?
是否可以?