aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/blob/text/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/api/blob/text/index.html')
-rw-r--r--files/zh-cn/web/api/blob/text/index.html71
1 files changed, 71 insertions, 0 deletions
diff --git a/files/zh-cn/web/api/blob/text/index.html b/files/zh-cn/web/api/blob/text/index.html
new file mode 100644
index 0000000000..45df1aa79b
--- /dev/null
+++ b/files/zh-cn/web/api/blob/text/index.html
@@ -0,0 +1,71 @@
+---
+title: Blob.text()
+slug: Web/API/Blob/text
+tags:
+ - 数据
+ - 文本
+translation_of: Web/API/Blob/text
+---
+<div>{{APIRef("File API")}}</div>
+
+<p><span class="seoSummary"><code><strong>text()</strong></code> 方法返回一个 {{jsxref("Promise")}} 对象,包含 blob 中的内容,使用 UTF-8 格式编码。</span></p>
+
+<ul>
+</ul>
+
+<h2 id="语法">语法</h2>
+
+<pre class="brush: js">var <em>textPromise</em> = <em>blob</em>.text();
+
+<em>blob</em>.text().then(<em>text</em> =&gt; /* 执行的操作…… */);
+
+var <em>text</em> = await <em>blob</em>.text();
+</pre>
+
+<h3 id="参数">参数</h3>
+
+<p>无须提供任何参数。</p>
+
+<h3 id="返回值">返回值</h3>
+
+<p>返回一个 promise 对象,以 resolve 状态返回一个以文本形式包含 blob 中数据的 {{domxref("USVString")}}。并且该数据<strong>总是</strong>被识别为 UTF-8 格式。</p>
+
+<h2 id="使用须知">使用须知</h2>
+
+<p>{{domxref("FileReader")}} 的 {{domxref("FileReader.readAsText", "readAsText()")}} 方法是一个与之类似的方法,它对 <code>Blob</code> 和 {{domxref("File")}} 对象都适用。下面是两个主要的不同之处:</p>
+
+<ul>
+ <li><code>Blob.text()</code> 返回的是一个 promise 对象,而 <code>FileReader.readAsText()</code> 是一个基于事件的 API。</li>
+ <li><code>Blob.text()</code> 总是使用 UTF-8 进行编码,而 <code>FileReader.readAsText()</code> 可以使用不同编码方式,取决于 blob 的类型和一个指定的编码名称。</li>
+</ul>
+
+<h2 id="规范">规范</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">Specification</th>
+ <th scope="col">Status</th>
+ <th scope="col">Comment</th>
+ </tr>
+ <tr>
+ <td>{{SpecName("File API", "#dom-blob-text", "Blob.text()")}}</td>
+ <td>{{Spec2("File API")}}</td>
+ <td></td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="浏览器兼容性">浏览器兼容性</h2>
+
+
+
+<p>{{Compat("api.Blob.text")}}</p>
+
+<h2 id="另见">另见</h2>
+
+<ul>
+ <li>{{domxref("Body.text()")}}</li>
+ <li><a href="/en-US/docs/Web/API/Streams_API">Streams API</a></li>
+ <li>{{domxref("FileReader.readAsText()")}}</li>
+</ul>