ファイルのストリームを送信する API 呼び出しがあります。ストリームを取得し、uInt8Array として出力します。
このhtml5の例を使用しています:
http://www.html5rocks.com/en/tutorials/file/xhr2/
ファイル名とタイプはわかっていますが、この配列データを「ファイル」に入れ、それをユーザーにダウンロードしてもらうにはどうすればよいですか?
xhr = new XMLHttpRequest()
xhr.open "GET", "#{window.API_URL}/transfer/123/2134/#{program_id}", true
xhr.responseType = "arraybuffer"
xhr.onloadstart = (e) ->
# downloading file notify on footer
xhr.onprogress = (e) ->
# show progress and size of file.
console.log "#{Math.round(e.loaded/e.total)*100}% completed"
xhr.onload = (e) ->
uInt8Array = new Uint8Array(@response)
xhr.send()