ruby-on-rails – NoMethodError:未定义的方法`has_attached_file’

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – NoMethodError:未定义的方法`has_attached_file’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在检查插件的rails3分支后,Paperclip会产生此错误.
我的Gemfile有以下行:
gem 'paperclip',:git => 'http://github.com/thoughtbot/paperclip.git',:branch => 'rails3'

并且错误消息是:

NoMethodError: undefined method `has_attached_file' for #<Class:0x2a50530>

解决方法

更新06-21-10: thoughtbot版本已修复.

我必须在Application<类的结尾处将Paperclip :: Railtie.insert添加到我的application.rb中. Rails ::应用程序使其正常工作.自官方回购工作以来,我已经删除了我的前叉.希望能帮助别人. 您还需要将以下内容添加到Gemfile中

gem "paperclip",:git => "http://github.com/thoughtbot/paperclip.git"
原文链接:https://www.f2er.com/ruby/268716.html

猜你在找的Ruby相关文章