以嵌套形式获取当前对象

时间:2012-02-12 09:56:13

标签: ruby-on-rails nested-forms

一本书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)

1 个答案:

答案 0 :(得分:9)

f.object正是您要找的。