How can I send binary data from Sinatra?

后端 未结 4 1506
深忆病人
深忆病人 2021-02-12 17:18

I want to send binary data from a Sinatra application so that the user can download it as a file.

I tried using send_databut it gives me an undefined

4条回答
  •  隐瞒了意图╮
    2021-02-12 18:00

    you can just return binary data:

    get '/binary' do
      content_type 'application/octet-stream'
      "\x01\x02\x03"
    end
    

提交回复
热议问题