我正在尝试使用PUT将文件上传到webmachine
资源。我们的想法是使用file_id
更新模板资源。
module App::Resources
class UpdateTemplateResource < TemplateResource
def allowed_methods
%W(PUT)
end
def content_types_accepted
# What to do here?
end
private
def template_id
request.path_info[:id]
end
def template
@template ||= ::App::Models::Template.find_latest_version_by_guid(id)
end
end
end
我找到了接受json类型请求的示例,但不是多部分。该文件未保存在服务器中,但已转换并发送到另一个服务进行存储。
答案 0 :(得分:0)
Webmachine::Request
对象包含主体,本质上是具有边界的多部分请求。如果我们知道正在发送什么类型的文件,我们可以解析它。
正文边界包括与之关联的内容类型,文件名和参数。然后启动实际文件。
如果是JSON
lines = []
request.body.to_io.each {|l| lines << l if l =~ /\[/ }
json = JSON.parse(lines[0])
如果是pdf文件
lines = request.body.to_io.read
pdf_as_string = lines.match(/^(\%PDF-)(.*\s)*(\%\%EOF\s)$/)[0]