添加图像后使用回形针调整图像大小时出错
这是我的模型中的代码:
has_attached_file :photo,
:styles => {
:tiny => "25x25#",
:thumbnail => "50x50#",
:small => "150x150>",
:medium => "300x300>" },
:default_url => "/images/default_:style.jpg"
我运行此命令:
rake paperclip:refresh:thumbnails CLASS=Photo
然后收到此错误:
rake aborted!
uninitialized constant Photo
发生了什么事?我该如何解决这个问题?
This is the code in my model:
has_attached_file :photo,
:styles => {
:tiny => "25x25#",
:thumbnail => "50x50#",
:small => "150x150>",
:medium => "300x300>" },
:default_url => "/images/default_:style.jpg"
I run this command:
rake paperclip:refresh:thumbnails CLASS=Photo
and I get this error:
rake aborted!
uninitialized constant Photo
What going on? How can I fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
显然它不知道你的模特照片。尝试使用命令“require”,例如
或任何您的模型路径。
Obviously it doesn't know your model Photo. Try a command "require", e.g.
or whatever your model path is.