如何将从createObjectURL生成的URL转换为FormData

时间:2018-11-11 19:32:20

标签: javascript base64 blob filereader form-data

就像标题一样,我必须将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]);
                }
            }

0 个答案:

没有答案