このまえ Sinatra でファイルをダウンロードさせる方法を書いた。では逆、アップロードはどうだろう?試したところ、次のようになった。 require 'rubygems' require 'sinatra' require 'haml' get '/' do haml :index end # アップロードされたファイルを返す put '/upload' do if params[:file] content_type params[:file][:type] f = params[:file][:tempfile] f.read f.size end end __END__ @@index %html %body %form{:action => '/upload', :method => 'POST', :enctype => 'multipart/form-data'} %inp
Marcos V. wrote: If you use datamapper, there is an paperclip for datamapper! regards! Thanks for the reply! I’m using ActiveRecord and wouldn’t want to change to Datamapper unless I HAD to. Thanks again, I’ll look into it as soon as I get a chance. -Tony Tony T. wrote: I need to upload an image from my local computer to a web server and store the location in a database (similar to how Paperclip a
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く