ruby-on-rails – ActiveRecord:删除相关记录

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – ActiveRecord:删除相关记录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我得不到的东西……

我的模型中有这个:

class Model < ActiveRecord::Base
    has_many :model_options # a link table for many to many
    has_many :options,:through => :model_options,:dependent => :destroy,:foreign_key => 'model_id'
end

我试着这样做:

model = Model.find(id)
model.options.delete # also tried model.options.delete_all

但这并不是从数据库删除记录.
相反,我必须这样做:

model.options.each do |option|
   option.delete
end

……这不是最好的方式.
请问最好的方法是什么?

解决方法

model.options.clear

Reference

原文链接:https://www.f2er.com/ruby/267130.html

猜你在找的Ruby相关文章