为什么我的rails3 beta4模型中出现“SystemStackError:stack level too deep”

时间:2010-07-17 06:22:55

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

我在SystemStackError: stack level too deep下的rails3 beta4执行以下代码时遇到以下错误:ruby 1.9.2-rc1

ruby-1.9.2-rc1 > f = Forum.all.first
  => #<Forum id: 1, title: "Forum 1", description: "Description 1", content: "Content 1", parent_id: nil, user_id: 1, forum_type: "forum", created_at: "2010-07-17 04:39:41", updated_at: "2010-07-17 04:39:41", icon_file_name: nil, icon_content_type: nil, icon_file_size: nil, icon_updated_at: nil> 
ruby-1.9.2-rc1 > f.children
  => [#<Forum id: 2, title: "Thread 2", description: "Description 2", content: "Content 2", parent_id: 1, user_id: 1, forum_type: "thread", created_at: "2010-07-17 04:40:17", updated_at: "2010-07-17 04:40:17", icon_file_name: nil, icon_content_type: nil, icon_file_size: nil, icon_updated_at: nil>] 
ruby-1.9.2-rc1 > f.forum_type = "thread"
  => "thread" 
ruby-1.9.2-rc1 > f.save
SystemStackError: stack level too deep
from /Users/emilkampp/.rvm/rubies/ruby-1.9.2-rc1/lib/ruby/1.9.1/irb/workspace.rb:80
Maybe IRB bug!!
ruby-1.9.2-rc1 > 

这是由以下代码引起的:

# Before and after filters
# 
before_update :update_all_nested_objects, :if => :forum_type_changed?

protected
  # Checks if the +forum_type+ has been changed
  # 
  def forum_type_changed?
    self.forum_type_changed?
  end

  # Updates all nested upjects if the +forum_type+ has been changed
  # 
  # This will trigger the +update_all_nested_objects+ method on all touched children, thus 
  # starting a chain-reaction all the way through the forum-tree.
  # 
  # NOTE: This is where the error is triggered, since this is the only non-tested looping code, and my test-
  #       cases hasn't changed since this was added.
  # 
  def update_all_nested_objects
    children.each do |child|
      child.forum_type = child_type
      child.save
    end
  end

那么,发生了什么。我一直在检查一下,但似乎没有人有同样的问题。要么它不是相同的ruby版本,因此workflow.rb文件不同,或者stack level to deep是由其他东西引起的。

任何帮助都会有很大帮助!

祝你好运

// Emil

1 个答案:

答案 0 :(得分:37)

您在方法本身中调用相同的方法

  def forum_type_changed?
    self.forum_type_changed?  #This will never ending process hence it gives error
  end

我认为您有相同的method namecolumn name导致问题更改您的方法名称

  def check_forum_type_changed?
    self.forum_type_changed?  #method name and column name are different
  end