Pergunta

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?

Foi útil?

Solução

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.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top