使用回形针的未定义方法“has_attached_file”

时间:2011-06-28 18:33:25

标签: ruby-on-rails-3 paperclip ruby-1.8

升级到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

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

将这些添加到您的模型

attr_accessor :image_file_name, :image_content_type, :image_file_size, :image_updated_at