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
:
为什么
Blob
没有出现在FormData
中?
实际上,根据 FormData 规范,无法在简单的
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]);
}