12

我已经用谷歌搜索/堆栈溢出了几个小时,但没有找到解决这个问题的方法。我想知道我的 PaperClip 安装是否不成功。我正在尝试验证模型文件夹中的图像附件:

validates :image, presence: true,
content_type: { content_type: ['image/jpeg', 'image/jpg', 'image/png', 'image/gif']},
size: { less_than: 5.megabytes }

我还尝试了更类似于 github 上的 read me 文件的代码:

validates_attachment :image, :presence => true,
:content_type => { :content_type => 'image/jpeg', 'image/jpg', 'image/png', 'image/gif' },
:size => { less_than: => 5.megabytes }

而且我尝试使用单独的验证

validates_attachment_presence :image
validates_attachment_content_type :image,:content_type => ['image/jpeg', 'image/jpg', 'image/png', 'image/gif']
validates_attachment_size :image,:less_than => 5.megabytes

在所有情况下我都会遇到错误。任何一个:

Routing Error
undefined method `before_image_post_process' for #<Class:0x00000101461750>
Try running rake routes for more information on available routes.

或者:

NoMethodError in PinsController#index
undefined method `key?' for nil:NilClass
4

3 回答 3

34

has_attached_file :image的档案里有吗?如果是这样,请确保它是 before validates_attachment

于 2013-07-31T16:46:08.787 回答
4

我每次都会收到此错误,只是因为我总是忘记以相同的方式重命名图像变量(从片段复制后):

has_attached_file :avatar...

validates_attachment_content_type :photo, :content_type...

→ 应该也:avatar代替:photo

这是一个完美的例子,说明当代码不是 DRY 时可能会出现问题。

于 2015-08-23T00:32:49.630 回答
1

savmac 的修复程序刚刚对我有用。我在打开heroku时遇到了同样的问题。模型中的线条之前已经出现故障,而我的应用程序已经无缝运行了几个月——不知道发生了什么变化。谢谢!

于 2013-08-01T18:18:01.470 回答