升级到Rails 2.3.11到3.1时,我的应用程序出现了一些意想不到的行为,特别是与Paperclip有关。
我已经将gem'paperclip'添加到我的Gemfile中,然后我运行bundle install
并且似乎一切顺利,除了当我启动服务器时,我得到了这个堆栈跟踪
...: `method_missing': undefined local variable or method `has_attached_file' for #<Class:0x7f30b32c1f88> (NameError)
...
...
from /home/user/railscamp/app/app/models/organization.rb:76
...
from /home/user/railscamp/app/config.ru:1:in `new'
from /home/user/railscamp/app/config.ru:1
有什么想法吗?
答案 0 :(得分:1)
将这些添加到您的模型
attr_accessor :image_file_name, :image_content_type, :image_file_size, :image_updated_at