我正在使用paperclip管理我正在处理的rails项目中的图像上传。它适用于我使用它的所有模型,除了一个。模型中定义的样式不是在上传时创建的,而是在我运行rake paperclip:refresh:missing_styles
时创建的。对于我的生活,我不知道这个模型与其他完美运作的模型之间的区别。以下是相关代码:
paperclip_attachments.yml:
:Artist:
:sample_pic:
- :large
- :medium
:Event:
:event_image:
- :list_style
:Photo:
:image:
- :photofeed
:RecommendedVendor:
:logo:
- :feed
- :larger
:User:
:avatar:
- :medium
- :small
- :thumb
模型:
attr_accessible ... :image
has_attached_file :image, styles: { photofeed: "483x483#" },
path: ":rails_root/public/system/:attachment/:id/:style/:filename",
url: "/system/:attachment/:id/:style/:filename"
上传表单:
<%= form_for @photo, html: { multipart: true } do |f| %>
<%= f.file_field :image %>
.
.
.
我做错了什么?
答案 0 :(得分:0)
我怀疑某处存在关键字冲突。如果您将附件从:image
重命名为其他内容,则可能无法看到此问题。
话虽如此,这可能不应该发生,如果其他用户通过更改回形针的版本来修复问题,您可能发现了您正在使用的特定版本的错误,应该考虑将其提交给{{3 }}