uInt8Array响应 - 文件下载 - Javascript

时间:2013-02-13 15:53:12

标签: javascript xmlhttprequest bytearray

我有一个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()

1 个答案:

答案 0 :(得分:0)

尝试这种方法(适用于IE10 +,FF,Chrome):

var blob = new Blob([uInt8Array], {type: contentType });

并参考answer