如何将FileReader对象中的数据转换为表单数据以进行上载?

时间:2012-09-20 03:06:48

标签: javascript forms html5 xmlhttprequest

我更大的问题是我想使用HTML5拖放功能允许通过CORS将图像上传到我的S3存储桶。我能够在S3中得到一些东西,但它总是最终看起来像是base64编码的内容。

myFileReader.readAsArrayBuffer(f);
//[...]

function on_onload(file_name, file_type, file_data) {
    // file_name and file_type are bound to the function via a closure,
    // file_data is passed in during the actual callback invocation.
    var xhr = new XMLHttpRequest();
    var fd = new FormData();
    // code that sets AWS credentials for fd omitted

    // _arrayBufferToBase64() just does a binary to base64 conversion 
    // as described in https://stackoverflow.com/questions/9267899/arraybuffer-to-base64-encoded-string
    fd.append('file', _arrayBufferToBase64(file_data));

    xhr.open('POST', my_aws_bucket_endpoint, true);
    xhr.send(fd);
}

_arrayBufferToBase64()只是来自this answer的循环代码。

尝试上传foo.jpg后:

$ wget [my_uri]/foo.jpg
[...]
HTTP request sent, awaiting response... 200 OK
Length: 295872 (289K) [image/jpeg]
Saving to: 'foo.jpg'

$ file foo.jpg
foo.jpg: ASCII text, with very long lines, with no line terminators

$ head -c 20 foo.jpg
/9j/4AAQSkZJRgABAQEA

如果我尝试按this answer中所述使用readAsBinaryString(),然后将返回的数据分配给'file'密钥,则不会发送任何数据,最终会得到零长度在我的S3存储桶中存档。

1 个答案:

答案 0 :(得分:7)

回答我自己的问题:

事实证明, 根本不需要使用FileReader。来自File事件的DataTransfer对象已与FormData兼容。

example is available here

将文件上传到S3所需要做的只是修改该示例,方法是在将XMLHttpRequest发送到S3之前在FormData设置您的凭据和签名。