def create
@asset = Asset.new(params[:asset])
respond_to do |format|
if params[:Filedata]
@asset = Asset.new :swf_uploaded_data => params[:Filedata]
@asset.user = current_user
@asset.save!
format.html { render :text => @asset.image.url(:thumb) }
format.xml { render :nothing => true }
else
if @asset.save
flash[:notice] = 'Created'
format.html { redirect_to(@asset) }
format.xml { render :xml => @asset, :status => :created, :location => @asset }
else
format.html { render :action => "new" }
format.xml { render :xml => @asset.errors, :status => :unprocessable_entity }
end
end
end
end
我正在使用swfupload创建上传状态栏。在上传结束时,我收到406错误。
答案 0 :(得分:1)
不一定是你的答案,但我遇到了与Plupload相同的问题,而且请求格式为零。 它可能不是最好的方式,但可以做到以下几点:
request.format ||= :xml
为了在方法中提供一些默认格式。希望它可以帮助别人。