我有一个产品模型和一个图像模型(基于回形针)。
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
所以我在许可产品参数中添加了图像属性(就像那里一样):
def product_params
params.require(:product).permit(:name, :sharable, :givable, image_attributes: [:name, :picture_file_name, :picture_content_type, :picture_file_size])
end
但这并没有改变任何东西,我总是有同样的错误信息。您知道权限问题来自哪里吗?