添加图像后使用回形针调整图像大小时出错

发布于 2024-11-07 19:39:15 字数 466 浏览 0 评论 0原文

这是我的模型中的代码:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

反目相谮 2024-11-14 19:39:15

显然它不知道你的模特照片。尝试使用命令“require”,例如

require "lib/photo"

或任何您的模型路径。

Obviously it doesn't know your model Photo. Try a command "require", e.g.

require "lib/photo"

or whatever your model path is.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文