这是MDN的代码,显示了createObjectURL示例:
var img = document.createElement("img");
img.src = window.URL.createObjectURL(files[i]);
img.height = 60;
img.onload = function(e) {
window.URL.revokeObjectURL(this.src);
}
li.appendChild(img);
完整文件为here。这是createObjectURL的document。
您只需传递File对象而不是ObjectURL。我的问题是:
我无法理解这件事。让我知道你的想法。谢谢!