1

調査したところ、ActiveResource にはこの機能がないことに気付きました。では、ファイルのアップロードを行う際の最新技術はどのようなものでしょうか?

Guillermo のアプローチの問題点の 1 つは、次のようにリクエストをネストする必要があることです。

body = { :file => {:uploaded_data => File.open("#{RAILS_ROOT}/public/tmp/" + original_filename), :owner_id => current_user.owner_id }, :api_key => '123123123123123123'}

もちろん、HttpClient でこのようなリクエストを行うことはできません。github で見つけた他の gem (sevenwire-http-client と technoweenie-rest-client) を試しましたが、ファイルがネストされていることに問題があります。ネストされたリクエストでファイルをアップロードすることは可能ですか?

4

2 に答える 2

3

Httpclient gem を使用すると、次のようなマルチパート投稿を行うことができます。

clnt = HTTPClient.new
File.open('/tmp/post_data') do |file|
   body = { 'upload' => file, 'user' => 'nahi' }
   res = clnt.post(uri, body)
 end

これを使用して、ローカル ファイル システム上のファイルを他のアプリケーションのコントローラーに単純にポストできます。最初にデータを保存せずに、フォームを使用してアプリにアップロードするだけでデータをアップロードする場合は、おそらく、params からアップロードされたデータを投稿本文ですぐに使用できます。

于 2009-06-26T00:14:30.700 に答える
1

次のようなことを試すことができます。

#I used the HTTPClient gem as suggested (thanks!)
clnt = HTTPClient.new

# The file to be uploaded is originally on /tmp/ with a filename 'RackMultipart0123456789'. 
# I had to rename this file, or the resulting uploaded file will keep that filename. 
# Thus, I copied the file to public/tmp and renamed it to its original_filename.(it will be deleted later on)
original_filename =  params[:message][:file].original_filename
directory = "#{RAILS_ROOT}/public/temporary"
path = File.join(directory, original_filename)
File.open(path, "w+") { |f| f.write(params[:job_application][:resume].read) }

# I upload the file that is currently on public/tmp and then do the post.
body = { :uploaded_data => File.open("#{RAILS_ROOT}/public/tmp/" + original_filename), :owner_id => current_user.owner_id}   
res = clnt.post('http://localhost:3000/files.xml', body)
于 2009-07-08T20:29:45.703 に答える