我正在使用drawImage
,因此Active Admin
可以创建/删除类别,标签和产品。
我可以创建adminuser
,Labels
和Categories
但没有任何问题但是当我想要删除标签或类别时,我总是会收到此错误:
Products
PG::ForeignKeyViolation at /admin/labels/2
如果我试图销毁产品,我会收到此消息ERROR: update or delete on table "labels" violates foreign key constraint "fk_rails_5a55c39b94" on table "products"
DETAIL: Key (id)=(2) is still referenced from table "products".
在我看来,当我删除分配给产品的Product could not be destroyed.
或labels
时,我收到此错误。
我不知道如何解决这个问题
以下是相关代码
categories
app/admin/product.rb
ActiveAdmin.register Product do
permit_params :title, :description, :image, :price_usd, :price_isl, :category_id, :label_id
index do
column :title
column :category
column :label
column :created_at
column :price_isk, :sortable => :price_isl do |product|
number_to_currency(product.price_isl, :unit => "ISK " , :precision => 0)
end
column :price_euro, :sortable => :price_usd do |product|
number_to_currency(product.price_usd, :unit => "€ " , :precision => 0)
end
actions
end
end
app/admin/label.rb
ActiveAdmin.register Label do
permit_params :name
end
app/admin/category.rb
在ActiveAdmin.register Category do
permit_params :name
end
app/models/product.rb
和class Product < ActiveRecord::Base
belongs_to :category
belongs_to :label
has_many :product_item
before_destroy :ensure_not_product_item
validates :title, :description, presence: true
validates :price_usd, :price_isl, numericality: {greater_than_or_equal_to: 0.01}
validates :title, uniqueness: true
has_attached_file :image, styles: { medium: "500x500#", thumb: "100x100#" }
validates_attachment_content_type :image, content_type: /\Aimage\/.*\z/
def ensure_not_product_item
if product_item.empty?
return true
else
errors.add(:base, 'You have Product Items')
return false
end
end
end
app/models/label.rb
和class Label < ActiveRecord::Base
has_many :products
has_many :pages
end
app/models/category.rb
和class Category < ActiveRecord::Base
has_many :products
end
app/models/product_items.rb
答案 0 :(得分:3)
您希望更新has_many
关联,以告知ActiveRecord在销毁Label
或Category
时该怎么做。听起来您想简单地取消关联的label_id
中的category_id
或Product
,以便:
class Label < ActiveRecord::Base
has_many :products, :dependent => :nullify
has_many :pages
end
class Category < ActiveRecord::Base
has_many :products, :dependent => :nullify
end
在销毁Page
时,如果您想要将其更新为Label
,则不确定要对label_id
做什么?
has_many :pages, :dependent => :nullify
如果你想销毁Page
,那么:
has_many :pages, :dependent => :destroy
同样适用于has_many :product_item
中的Product
。如果你想在破坏产品的同时破坏物品,那么:
before_destroy :ensure_not_product_item
和ensure_not_product_item
方法。has_many :product_items, :dependent => :destroy
。如果您想让它们在产品之前手动销毁,请保留原有产品。
根本问题是您在数据库中有一个外键约束,以确保products.label_id
和products.category_id
列始终引用有效的categories.id
值。如果您从categories
中删除了一行(即销毁了Category
个实例),但products
中的行仍然引用该类别,则数据库会因为您尝试违反而抱怨外键约束并在数据库中保留损坏的数据。
数据库中的FK是一个好主意,因为它可以防止您在数据库中损坏引用,但需要正确清理。
答案 1 :(得分:1)
删除类别时,可以将product表中的label_id或category_id设置为nil。在我的头顶,但可能是这样的:
类别模型:
before_destroy :remove_category_from_products
private
def remove_category_from_products
Product.where(category_id: id).update_all(category_id: nil)
end
我的意思是,我在您的应用中没有太多关于业务逻辑的背景信息,但这应该会让您不再看到该错误......