我已经成功安装了Paperclip gem并将图片上传到我的帖子,但是在show动作中没有任何图片,只有alt图像与alt。
我在rails 3.2.1上使用ruby
@post form:
<% create_url = {:url=>{:action=>"create"}} if @post.new_record? %>
<% form_for @post, :html => { :multipart => true } do |t| %>
<b><%= t.label :title, 'Virsraksts:' %></b><br />
<%= t.text_field :title %><br /><br />
<b><%= t.label :content, 'Teksts:' %></b><br />
<%= t.text_area :content %><br /><br />
<%= f.file_field :bildes %>
<div class="actions">
<%= t.submit %>
</div>
@post show:
<p><%= @post.content %></p>
<%= image_tag @post.bildes.url %>
<%= image_tag @post.bildes.url(:medium) %>
<%= image_tag @post.bildes.url(:thumb) %>
在我看来,@ post模型网址和路径不对,但正是我不知道的。
@post model:
class Post < ActiveRecord::Base
has_attached_file :bildes, :styles => { :medium => "300x300>", :thumb => "100x100>" },
:url => ":rails_root/app/assets/bildes/:id/:style/:basename.:extension",
:path => ":rails_root/app/assets/bildes/:id/:style/:basename.:extension"
end
答案 0 :(得分:2)
尝试使用附加文件的默认URL /路径,方法是不在模型中指定它。