为什么我们需要URL.createObjectURL?

时间:2014-03-25 09:14:14

标签: javascript

这是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。我的问题是:

  1. 他们为什么需要createObjectURL?
  2. 为什么他们将其命名为xxxURL?是否与“www.google.com?p=32&t=33”?
  3. 等网址相关

    我无法理解这件事。让我知道你的想法。谢谢!

0 个答案:

没有答案