我正在关注One Month Rail课程,我遇到了这个问题:我使用了Paperclip gem来处理图片上传。我按照指示行事;但是,当我上传图像时,它无法正确显示,而是显示丢失的图像
Chrome控制台的屏幕截图:https://dl.dropboxusercontent.com/u/2570626/Screen%20Shot%202014-02-06%20at%209.51.13%20AM.png
我的Github文件夹是:https://github.com/phanatuan/pinteresting
非常感谢您的帮助,
疃
答案 0 :(得分:1)
在pins/_form.html.erb
部分内,您错误输入file_field
:image
替换:
<div class="field form-group">
<%= f.label :image %>
<%= f.file_field :image, class: 'form-control' %>
</div>
其他一切都还可以。