blob: bfa0e79d4623305c91bdcecd16b26caa69b4494b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
---
title: URL.createObjectURL()
slug: Web/API/URL/createObjectURL
tags:
- API
- DOM
- URL
- URL API
- 方法
translation_of: Web/API/URL/createObjectURL
---
<div>{{ApiRef("URL")}}</div>
<p><strong><code>URL.createObjectURL()</code></strong> 静态方法会创建一个 {{domxref("DOMString")}},其中包含一个表示参数中给出的对象的URL。这个 URL 的生命周期和创建它的窗口中的 {{domxref("document")}} 绑定。这个新的URL 对象表示指定的 {{domxref("File")}} 对象或 {{domxref("Blob")}} 对象。</p>
<p>{{AvailableInWorkers}}</p>
<div class="note">
<p><strong>注意:</strong>此特性在 <a href="/zh-CN/docs/Web/API/Service_Worker_API">Service Worker</a> 中不可用,因为它有可能导致内存泄漏。</p>
</div>
<h2 id="语法">语法</h2>
<pre class="syntaxbox"><em>objectURL</em> = URL.createObjectURL(<em>object</em>);
</pre>
<h3 id="参数">参数</h3>
<dl>
<dt><code>object</code></dt>
<dd>用于创建 URL 的 {{domxref("File")}} 对象、{{domxref("Blob")}} 对象或者 {{domxref("MediaSource")}} 对象。</dd>
</dl>
<h3 id="返回值">返回值</h3>
<p>一个{{domxref("DOMString")}}包含了一个对象URL,该URL可用于指定源 <code>object</code>的内容。</p>
<h2 id="示例">示例</h2>
<p>查看<a href="/zh-CN/docs/Using_files_from_web_applications#Example.3A_Using_object_URLs_to_display_images" title="https://developer.mozilla.org/en/Using_files_from_web_applications#Example:_Using_object_URLs_to_display_images">使用对象URL显示图片</a>.</p>
<h2 id="Notes" name="Notes">附注</h2>
<h3 id="内存管理">内存管理</h3>
<p>在每次调用 <code>createObjectURL()</code> 方法时,都会创建一个新的 URL 对象,即使你已经用相同的对象作为参数创建过。当不再需要这些 URL 对象时,每个对象必须通过调用 {{domxref("URL.revokeObjectURL()")}} 方法来释放。</p>
<p>浏览器在 document 卸载的时候,会自动释放它们,但是为了获得最佳性能和内存使用状况,你应该在安全的时机主动释放掉它们。</p>
<h3 id="使用相对URLs作为媒体流">使用相对URLs作为媒体流</h3>
<p>在旧版本的媒体资源规范中,添加流作为{{HTMLElement("video")}}元素需要创建一个关于 {{domxref("MediaStream")}}的对象URL。现已没必要这样做了,浏览器已经移除了该操作的支持。</p>
<div class="blockIndicator warning">
<p>重要:如果你为了去添加流作为媒体元素,而仍旧使用着依赖{{domxref("URL.createObjectURL", "createObjectURL()")}} 的代码,你需要更新的代码,仅需要设定{{domxref("HTMLMediaElement.srcObject", "srcObject")}} 到`<code>MediaStream</code> `即可。</p>
</div>
<h2 id="规范">规范</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">规范</th>
<th scope="col">状态</th>
<th scope="col">备注</th>
</tr>
<tr>
<td>{{SpecName('File API', '#dfn-createObjectURL', 'createObjectURL()')}}</td>
<td>{{Spec2('File API')}}</td>
<td>Initial definition.</td>
</tr>
<tr>
<td>{{SpecName('Media Source Extensions', '#dom-url-createobjecturl', 'URL')}}</td>
<td>{{Spec2('Media Source Extensions')}}</td>
<td>
<p>MediaSource extension.</p>
<p>Older versions of this specification used <code>createObjectURL()</code> for {{domxref("MediaStream")}} objects; this is no longer supported.</p>
</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("api.URL.createObjectURL")}}</p>
<h2 id="See_also" name="See_also">相关链接</h2>
<ul>
<li><a href="/zh-CN/docs/Using_files_from_web_applications" title="Using files from web applications">在web应用程序中使用文件</a></li>
<li><a href="/en-US/docs/Using_files_from_web_applications#Example_Using_object_URLs_to_display_images" title="https://developer.mozilla.org/en/Using_files_from_web_applications#Example:_Using_object_URLs_to_display_images">Using object URLs to display images</a></li>
<li>{{domxref("URL.revokeObjectURL()")}}</li>
<li>{{domxref("HTMLMediaElement.srcObject")}}</li>
<li>{{domxref("FileReader.readAsDataURL()")}}</li>
</ul>
|