Modelime bir dosya eklemek için paperclip kullanıyorum.Ataş ve xhr.sendAsBinary
ajax isteği ile dosya göndermek için firefox 3.6, xhr.sendAsBinary
'un yeni özelliğini kullanmak istiyorum.
var xhr = new XMLHttpRequest();
xhr.open("POST", "/photos?authenticity_token=" + token
+ "&photo[name]=" + img.name
+ "&photo[size]=" + img.size);
xhr.overrideMimeType('text/plain; charset=x-user-defined-binary');
xhr.sendAsBinary(bin);
name
ve size
sorun olmadan benim modelinde kaydedilir ancak dosya kendisi ataş tarafından yakalanan değildir: Burada
benim isteği nasıl inşa olduğunu.
modelim
class Photo < ActiveRecord::Base
has_attached_file :photo, :styles => { :medium => "300x300>", :thumb => "100x100>" }
end
göç
def self.up
add_column :photos, :photo_file_name, :string
add_column :photos, :photo_content_type, :string
add_column :photos, :photo_file_size, :integer
add_column :photos, :photo_updated_at, :datetime
end
ve benim denetleyicisi nasıl bu sorunu çözmek için
# POST /photos
# POST /photos.xml
def create
@photo = Photo.new(params[:photo])
respond_to do |format|
if @photo.save
format.html { redirect_to(@photo, :notice => 'Photo was successfully created.') }
format.xml { render :xml => @photo, :status => :created, :location => @photo }
else
format.html { render :action => "new" }
format.xml { render :xml => @photo.errors, :status => :unprocessable_entity }
end
end
end
fikrin var mı?
Teşekkürler
dosyayı kolları bu
benziyor? –
işte burada, teşekkürler – denisjacquemin