我已成功安装 Paperclip gem 并将图片上传到我的帖子中,但在显示操作中没有任何图片,只有带有图像 alt 的 alt 文本。
我在 Rails 3.2.1 上使用 ruby
@post 表格:
<% 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 节目:
<p><%= @post.content %></p>
<%= image_tag @post.bildes.url %>
<%= image_tag @post.bildes.url(:medium) %>
<%= image_tag @post.bildes.url(:thumb) %>
在我看来@post 模型 url 和路径是不正确的,但正是我不知道的。
@post 模型:
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