Question

I'm building a document service on sinatra. In the response, I want to send the JSON data and an attachment. How can I do this in sinatra?

Était-ce utile?

La solution

The best way to handle this is to provide just two routes.

Something like this:

get "/json" do
    return json
end

get "/file/:name" do |filename|
    send_file file.filePath, :filename => file.fileName, :disposition => 'attachment'
end

And in your json respons you include the path to your file.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top