2017-08-08 9 views
0

私はRails 5を使用しています。テーブルからレコードの束を削除したいと思います。私は「currencies_to_removeは」私は削除したいすべてのモデルの配列を含むようになっている私のモデルオブジェクトの配列を削除する最速の方法は何ですか?

currencies = CryptoCurrency.order('latest_market_cap_in_usd desc').limit(num_currencies) 
current_index_currencies = CryptoIndexCurrency.all.pluck(:crypto_currency_id) 

currencies_to_remove = current_index_currencies - currencies 
... 
currencies_to_remove.each do |currency| 
    currency.destroy 
end 

を持っています。 currencies_to_removeは、モデルのインデックスではなくモデルよりも、削除するために含まれているためですリスト

2.4.0 :005 > svc.create_index 
    (0.4ms) SELECT "crypto_index_currencies"."crypto_currency_id" FROM "crypto_index_currencies" 
    CryptoCurrency Load (1.5ms) SELECT "crypto_currencies".* FROM "crypto_currencies" ORDER BY latest_market_cap_in_usd desc LIMIT $1 [["LIMIT", 12]] 
NoMethodError: undefined method `destroy' for 1020:Integer 
    from /Users/davea/.rvm/gems/ruby-2.4.0/gems/whenever-0.9.7/lib/whenever/numeric.rb:10:in `method_missing' 
    from /Users/davea/Documents/workspace/cindex/app/services/crypto_index_service.rb:17:in `block in create_index' 
    from /Users/davea/Documents/workspace/cindex/app/services/crypto_index_service.rb:16:in `each' 
    from /Users/davea/Documents/workspace/cindex/app/services/crypto_index_service.rb:16:in `create_index' 
    from (irb):5 
    from /Users/davea/.rvm/gems/ruby-2.4.0/gems/railties-5.0.4/lib/rails/commands/console.rb:65:in `start' 
    from /Users/davea/.rvm/gems/ruby-2.4.0/gems/railties-5.0.4/lib/rails/commands/console_helper.rb:9:in `start' 

答えて

3

繰り返し処理を行う場合、しかし、私は以下のエラーを取得します。したがって、destroyメソッドは未定義です。それらを削除する

最速の方法は、モデルクラス上のdelete方法になるだろう:

CryptoCurrency.delete(currencies_to_remove) 

しかし、あなたが破壊のコールバックを呼び出す必要がある場合、あなたはdestroy方法が必要になる場合があります。

CryptoCurrency.destroy(currencies_to_remove) 

destroyメソッドは、指定された配列のレコードが見つからない場合、RecordNotFound例外が発生することに注意してください。

関連する問題