只是不明白,我一直在关注一个教程,但它对我不起作用,有人可以帮我解决这个问题吗?谢谢
它提交并没有返回错误,但实际上没有任何内容插入到表中。
SQL
create_table "photos", :force => true do |t|
t.string "description"
t.string "content_type"
t.string "filename"
t.binary "binary_data"
end
.rb
class Photo < ActiveRecord::Base
attr_accessible :photos, :photo, :description
attr_writer :photos, :photo, :description
def image_file=(input_data)
self.filename = input_data.original_filename
self.content_type = input_data.content_type.chomp
self.binary_data = input_data.read
end
end
控制器(部分代码)我认为这段代码是错误的,它是自动生成的。教程没有说这必须修改。
def create
@photo = Photo.new(:photo => params[:photo])
respond_to do |format|
if @photo.save
format.html { redirect_to @photo, notice: 'Photo was successfully created.' }
format.json { render json: @photo, status: :created, location: @photo }
else
format.html { render action: "new" }
format.json { render json: @photo.errors, status: :unprocessable_entity }
end
end
end
看法
<%= form_tag ({:action => "create"}) %>
<%= file_field_tag "photo" %>
<%= submit_tag "Save" %>
<%= form_tag %>