我有一个Merchant模型,可以接受图片模型的嵌套属性。我想在商家编辑页面上显示上传的图片,但我被卡住了。
我收到了以下错误:
undefined method `image?' for nil:NilClass
有什么想法吗?
商家模式
class Merchant < ApplicationRecord
has_many :images, inverse_of: :merchant, dependent: :destroy
accepts_nested_attributes_for :images, reject_if: :all_blank, allow_destroy: true
end
图像模型
class Image < ApplicationRecord
belongs_to :merchant
mount_uploader :imagem, ImagemUploader
end
商家控制器
def new
@merchant = Merchant.new
@image = @merchant.images.build
end
表格
<div id="images">
<%= f.simple_fields_for :images do |image_field| %>
<%= render partial: 'image_fields', locals: {f: image_field} %>
<% end %>
<%= link_to_add_association('Add image', f, :images, { class: 'button-admin__actions text--small' }) %>
</div>
部分
<div class="nested-fields">
**<%= image_tag(@image.image_url(:thumb)) if @image.image? %>**
<%= f.input :image,
accept: 'image/jpeg,image/gif,image/png',
required: true
%>
<%= link_to_remove_association('remove', f, { class: 'button-admin__actions text--small' }) %>
</div>
答案 0 :(得分:2)
你可以试试这个:
<%= image_tag(f.object.image_url(:thumb)) if f.object.image? %>
说明:
f.object将是图像对象,如果它是新记录,那么它将不会出现图像。由于我们已经存在图像记录,所以我们可以添加图像检查吗?关于f.object。
我们也可以访问该图像的image_url。