Rails控制台混乱

时间:2016-03-14 20:33:44

标签: ruby-on-rails ruby console

我正在尝试删除更多只有一个ID。我目前正在使用Person.find(1).destroy

有没有办法可以选择多个数据记录呢?

1 个答案:

答案 0 :(得分:5)

是。您可以在控制台中编写脚本。

Person.find_each do |person|
  if # condition for deleting
    person.destroy
  end
end

或者,如果您知道所有ID ...您可以使用where子句然后销毁所有这些。

ids = [1,2,3,4,5]

people = Person.where(id: ids) # where can take an array of ids
people.each { |person| person.destroy }