gpt4 book ai didi

javascript - 如何将 Blob 附加到 FormData

转载 作者:行者123 更新时间:2023-12-05 05:00:15 24 4
gpt4 key购买 nike

var myBlob = new Blob(["This is my blob content"], {type : "text/plain"});
var fd = new FormData();
fd.append("clip",myBlob)

Blob 工作正常:

myBlob: Blob
size: 341746
type: "text/plain"

但它没有附加到 FormData:

enter image description here

为什么 Blob 没有出现在 FormData 中?

最佳答案

嗯,实际上,根据FormData specs 无法在简单的 console.log() 或调试器中检查表单数据元素。

因此检查其中项目的唯一方法是遍历其 entires像这样:

var myBlob = new Blob(["This is my blob content"], {type : "text/plain"});
var fd = new FormData();
fd.append("clip",myBlob);

// Display the key/value pairs
for (var pair of fd.entries()) {
console.log(pair[0]+ ', ' + pair[1]);
}

关于javascript - 如何将 Blob 附加到 FormData,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63142297/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com