一本书has_many夹克,我有一个嵌套的表格来添加它们。我想在右夹克的每组表单字段中都有一个缩略图。在书的编辑视图中获取当前夹克的最佳方法是什么?
books_controller.rb
def edit
@book = Book.find(params[:id])
end
_jacket_fields.html.haml partial
.nested-fields
= f.inputs do
= f.input :image, :as => :file, :label => "File name"
- jacket = # what could go here?
- if jacket
= image_tag jacket.image.url(:thumb)
答案 0 :(得分:9)
f.object
正是您要找的。 p>