Article.rb < ActiveRecord::Base
...
attr_reader :title
def title
self.title.gsub(/"/," ")
end
end
我正在尝试覆盖每篇文章标题的显示方式,因为如果我不这样做它看起来很难看,但我不断收到如下错误:
SystemStackError in ArticlesController#index or StackLevelTooDeep
我不知道如何解决这个问题。如果我将方法更改为不同的方法,例如 ntitle,它将起作用。为什么?!