我已经使用 ruby script/plugin install http://github.com/thoughtbot/paperclip.git将回形针作为插件安装到我的项目中
模型:
class Company < ActiveRecord::Base
has_attached_file :logo, :styles => { :large => "300x300>", :medium => "100x100>", :thumb => "50x50>" }
validates_attachment_content_type :logo, :content_type => image/jpeg, :message => "Incorrect logo file type!"
validates_attachment_size :log, :max => 200, :message => "big file"
end
但控制器方法返回:NoMethodError in CompaniesController#new undefined method `has_attached_file' for #
如果我尝试在模型类之前“需要'回形针'”,则返回:CompanyController#new 中的 MissingSourceFile 没有要加载的此类文件——回形针
问题是什么?