gpt4 book ai didi

ruby-on-rails - 多态关联和嵌套属性

转载 作者:行者123 更新时间:2023-12-02 04:53:35 26 4
gpt4 key购买 nike

我有一个产品模型和一个图像模型(基于回形针)。

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

但它并没有改变任何东西,我总是有同样的错误信息。您知道权限问题从何而来吗?

最佳答案

你可能需要改变

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])

关于ruby-on-rails - 多态关联和嵌套属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18381757/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com