昨日、JSON API を介してファイルを投稿する方法に関する質問をここに投稿しました。
Ruby / Rails で JSON をファイル コンテンツとともに投稿する
しかし、探しているものを正確に見つけることができなかったので、次のことを試してみました。
1) アップロードを行うための rake タスクを書きました:
desc "Tests JSON uploads with attached files on multipart formats"
task :picture => :environment do
file = File.open(Rails.root.join('lib', 'assets', 'photo.jpg'))
data = {title: "Something", description: "Else", file_content: Base64.encode64(file.read)}.to_json
req = Net::HTTP::Post.new("/users.json", {"Content-Type" => "application/json", 'Accept' => '*/*'})
req.body = data
response = Net::HTTP.new("localhost", "3000").start {|http| http.request(req) }
puts response.body
end
そして、次のように、私のレールアプリのコントローラー/モデルでこれを取得しました:
params[:user] = JSON.parse(request.body.read)
...
class User < ActiveRecord::Base
...
has_attached_file :picture, formats: {medium: "300x300#", thumb: "100#100"}
def file_content=(c)
filename = "#{Time.now.to_f.to_s.gsub('.', '_')}.jpg"
File.open("/tmp/#{filename}", 'wb') {|f| f.write(Base64.decode64(c).strip) }
self.picture = File.open("/tmp/#{filename}", 'r')
end
end
ですから、質問は次のとおりです。私は車輪を再発明していますか、それともこれが正しい方法ですか?
ところで:うまくいきます。これがjsonを介してファイルをアップロードするための規則であるかどうかを知る必要があります。