就像标题一样,我必须将url从createObjectURL
转换为FormData
(它可以是base64,我想我也应该自己介绍一下)。我只找到一个输出,但我对javascript尤其是fetch API感到不满意:
fetch(window.URL.createObjectURL(file))
.then(res => res.blob())
.then(blob => console.log(blob)
尽管获取了所有内容,但此提取对我不起作用。
for (var i = 0; i != tmpStorage.length; i++) {
if (fileValidation(tmpStorage[i], domFiles)) {
(function (tmp) {
fetch(tmp.blob)
.then(res => res.blob())
.then(blob => console.log('fetch blob', blob))
})(tmpStorage[i]);
}
}