我正在尝试在我的 Rails 应用程序中上传图像。但是,我无法这样做。我对 Rails 比较陌生,在这里我需要一些帮助。
我在这里显示了一个“图片”模型-
class Picture < ActiveRecord::Base
attr_accessible :photo, :tag
has_attached_file :photo, :styles => { :medium => "300x300>",
:large => "1000x1000>", :thumb => "100x100>" }
end
我在这里显示了一个“图片”控制器 -
class PicturesController < ApplicationController
def new
@picture = Picture.new
end
def create
@picture = Picture.create( params[:picture] )
if @picture.save
flash.now[:success] = "Image Uploaded"
redirect_to @picture
else
render 'new'
end
end
def index
end
def show
@picture = Picture.find(params[:id])
send_data @picture.photo, :type => 'image/png', :disposition => 'inline'
end
def imageshow
end
end
最后,这些是我的“新”和“展示”观点:
“新的.html.erb”
<h1>Upload an Image</h1>
<div>
<%= form_for(@picture, :html => {:multipart => true}) do |f| %>
<%= f.file_field :photo %>
<%= f.label :tag %>
<%= f.text_field :tag %>
<%= f.submit "Submit", class: "btn btn-large btn-primary" %>
<% end %>
</div>
“show.html.erb”
<h1>Displaying Uploaded Image</h1>
<div>
<%= image_tag @picture.photo.url %>
<%= image_tag @picture.photo.url(:large) %>
</div>
我能够访问上传页面(即图片控制器中的 new.html.erb)。但是,当我上传图片时,出现以下错误:
“此图像“http://10.102.119.20:3000/pictures/12”无法显示,因为它包含错误”
我的查询是:
- 图片从哪里上传到服务器?
- 有什么需要做的配置吗?
- 我的代码还有其他问题吗?
提前感谢您的帮助..!!