gpt4 book ai didi

paperclip - 错误 : Validation failed: Images imageable must exist , rails-5.0 , paperclip-5

转载 作者:行者123 更新时间:2023-12-03 21:14:32 25 4
gpt4 key购买 nike

当我尝试提交表单时,出现以下错误:Validation failed: Images imageable must exist并渲染相同的 new.html.erb看法。

如果我评论 file fieldnew.html.erb .产品创建成功。

产品 Controller :

def new
@product = Product.new
end

def create
@product = Product.create!(product_params)

if @product.save
redirect_to products_path, notice: "Product Created Successfully"
else
render "new"
end
end
def product_params
params.require(:product).permit(:name, :quantity, :price, images_attributes: [:id, :photo, :_destroy])
end

new.html.erb:
<%= nested_form_for @product, html: { multipart: true } do |f|%>

<h2>New</h2>

<P> <%= f.label :name %> <%= f.text_field :name %> </P>
<P> <%= f.label :quantity %> <%= f.text_field :quantity %> </P>
<P> <%= f.label :price %> <%= f.text_field :price %> </P>
<%= f.fields_for :images do |p| %>
<p> <%= p.label :photo %> <%= p.file_field :photo %> </p>
<%= p.link_to_remove "Remove Image" %>
<% end %>
<%= f.link_to_add "Add Image", :images %>

<%= f.submit "Add Product" %>
<% end %>

20160725102038_add_image_columns_to_imageable.rb:
class AddImageColumnsToImageable < ActiveRecord::Migration[5.0]

def up
add_attachment :images, :photo
end

def down
remove_attachment :images, :photo
end

end

型号:product.rb
class Product < ApplicationRecord
has_one :variant
has_many :images, as: :imageable, dependent: :destroy

accepts_nested_attributes_for :images, allow_destroy: true
end

型号:image.rb
class Image < ApplicationRecord
belongs_to :imageable, polymorphic: true

has_attached_file :photo, styles: { medium: "300x300>", thumb: "100x100>" }, default_url: "/images/:style/missing.png"
validates_attachment :photo, content_type: { content_type: ["image/jpg", "image/jpeg", "image/png", "image/gif"] }

end

最佳答案

在导轨 5 中,belongs_to确保关联的模型必须存在。
例如在这个多态关联中,图像模型有 belongs_to :imageable和产品型号有has_many :images .
所以在这里new.html.erb我们正在创建一个图像,但相应的产品不存在,所以这就是错误 Image imageable must exist 的原因.

解决方案

添加 optional: true同时建立belong_to的协会在图像模型中。

图像模型现在看起来像:

class Image < ApplicationRecord
belongs_to :imageable, polymorphic: true, optional: true

has_attached_file :photo, styles: { medium: "300x300>", thumb: "100x100>" }, default_url: "/images/:style/missing.png"
validates_attachment :photo, content_type: { content_type: ["image/jpg", "image/jpeg", "image/png", "image/gif"] }

end

关于paperclip - 错误 : Validation failed: Images imageable must exist , rails-5.0 , paperclip-5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38584189/

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