:dependent => :销毁不适用于模型,Rails 3.1.0

时间:2012-01-24 03:36:15

标签: ruby-on-rails ruby-on-rails-3 activerecord associations

Rails 3.1.0

我有几个带关联的模型。我的一个模型使用has_many:blocks继续错误地消除:blocks,dependent => :使用以下错误进行销毁:

NoMethodError in BucketsController#destroy

undefined method `delete_all' for #<Array:0x007ffd0cea9bb8>

我的水桶模型:

class Bucket < ActiveRecord::Base
  require 'erb'
  include ERB::Util
  require 'rdiscount'

  has_paper_trail :skip => [:lock_version]

  has_many :blocks, :dependent => :destroy #tried delete_all, nullify, same error
  belongs_to :folder
  belongs_to :pattern
  belongs_to :user, :class_name => "User", :foreign_key => "updated_by" 
  ...

我的座模型:

class Block < ActiveRecord::Base
  require 'erb'
  include ERB::Util
  require 'rdiscount'

  has_paper_trail :skip => [:lock_version]

  belongs_to :list
  belongs_to :pattern
  belongs_to :bucket
  belongs_to :user, :class_name => "User", :foreign_key => "updated_by"
  acts_as_list :scope => :bucket
  ...

My Pattern模型(工作正常)

class Pattern < ActiveRecord::Base
  has_paper_trail :skip => [:lock_version]

  has_many :blocks, :dependent => :destroy
  has_many :buckets, :dependent => :destroy
  belongs_to :user, :class_name => "User", :foreign_key => "updated_by" 
  ...

删除模式时,它会删除相关的块或存储桶,没有任何问题。我只是无法删除Bucket(和关联的块)而没有错误。我试过:delete_all和:nullify同样的错误。

有什么想法吗?

日志

Started DELETE "/buckets/4" for 127.0.0.1 at 2012-01-23 20:16:25 -0700
Processing by BucketsController#destroy as HTML
Parameters: {"authenticity_token"=>"+Bv+RYtusfOYfRkgYwC2Ptaj9brW1412NuVoxe5rD/4=", "id"=>"4"}
User Load (0.3ms)  SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
Bucket Load (0.5ms)  SELECT `buckets`.* FROM `buckets` WHERE `buckets`.`id` = 4 LIMIT 1
Role Load (0.4ms)  SELECT `roles`.* FROM `roles` INNER JOIN `roles_users` ON `roles`.`id` = `roles_users`.`role_id` WHERE `roles_users`.`user_id` = 1 AND `roles`.`title` = 'SuperAdmin' LIMIT 1
CACHE (0.0ms)  SELECT `buckets`.* FROM `buckets` WHERE `buckets`.`id` =  LIMIT 1
 (0.1ms)  BEGIN
Block Load (0.5ms)  SELECT `blocks`.* FROM `blocks` WHERE `blocks`.`bucket_id` = 4 ORDER BY position, id
 (0.4ms)  ROLLBACK
Completed 500 Internal Server Error in 150ms

NoMethodError (undefined method `delete_all' for #<Array:0x007ffd0cea9bb8>):
 app/controllers/buckets_controller.rb:67:in `destroy'

微量

activerecord (3.1.0) lib/active_record/associations/builder/has_many.rb:49:in `block in define_delete_all_dependency_method'
activesupport (3.1.0) lib/active_support/callbacks.rb:395:in `_run_destroy_callbacks'
activesupport (3.1.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
activerecord (3.1.0) lib/active_record/callbacks.rb:254:in `destroy'
activerecord (3.1.0) lib/active_record/transactions.rb:236:in `block in destroy'
activerecord (3.1.0) lib/active_record/transactions.rb:295:in `block in with_transaction_returning_status'
activerecord (3.1.0)    lib/active_record/connection_adapters/abstract/database_statements.rb:192:in `transaction'
activerecord (3.1.0) lib/active_record/transactions.rb:208:in `transaction'
...

1 个答案:

答案 0 :(得分:7)

我仔细检查了日志与成功后的关系:依赖=&gt; :从另一个模型中摧毁。

Block Load (0.5ms)  SELECT `blocks`.* FROM `blocks` WHERE `blocks`.`bucket_id` = 4 
\ORDER BY position, id

这一行看起来应该存在,但仔细检查后,ORDER BY子句不属于。

在我的Bucket模型中,我有以下rake任务。

def blocks
    Block.where(:bucket_id => self.id).order(:position, :id).all
end

这导致错误。没有什么比花几个小时来犯一个愚蠢的错误了。