我有一个产品型号和一个图像模型(基于回形针)。
class Product < ActiveRecord::Base
has_many :images, as: :imageable,
dependent: :destroy
accepts_nested_attributes_for :images
end
class Image < ActiveRecord::Base
belongs_to :imageable, polymorphic: true
has_attached_file :picture
end
我想在我创建产品(/products/new
)的同一页面中为我的产品添加图片。这是表格:
<%= form_for(@product, html: { multipart: true}) do |f| %>
<%= render 'shared/error_messages', object: f.object %>
<div>
<%= f.label :name, t('product.name') %>
<%= f.text_field :name %>
</div>
<div class="file_field">
<%= f.fields_for :image do |images_form| %>
<%= images_form.file_field :image %>
<% end %>
</div>
<%= f.submit @submit_button %>
<% end %>
然后我转到/products/new
页面,填写字段,然后点击提交按钮。服务器尝试呈现产品的显示页面,但由于图像尚未保存,因此无效。我有以下错误:
undefined method `picture' for nil:NilClass
表示产品展示页面中的以下行
image_tag(@product.images.first.picture.url(:medium))
我想知道为什么没有保存图像,我看到服务器呈现以下消息:
Unpermitted parameters: images_attributes
所以我在许可产品参数(like there)中添加了图像属性:
def product_params
params.require(:product).permit(:name, :sharable, :givable, image_attributes: [:name, :picture_file_name, :picture_content_type, :picture_file_size])
end
但它没有改变任何东西,我总是有相同的错误信息。您是否知道许可问题来自哪里?
答案 0 :(得分:4)
您可能需要更改
params.require(:product).permit(:name, :sharable, :givable, image_attributes: [:name, :picture_file_name, :picture_content_type, :picture_file_size])
到
params.require(:product).permit(:name, :sharable, :givable, images_attributes: [:name, :picture])
答案 1 :(得分:1)
您定义了一个has_many关联,因此在您的视图中,它应该是f.fields_for:images
<%= f.fields_for :images do |images_form| %>
<div class="file_field">
<%= images_form.file_field :picture %>
</div>
<% end %>
在控制器中,您应首先构建一些图像,然后将images_attributes添加到允许的参数中。
@product = Product.new
3.times {@product.images.build}
您的视图将显示3个文件字段。
答案 2 :(得分:0)
这与file_field
正在
<%= images_form.file_field :image %>
而不是以下?
<%= images_form.file_field :picture %>