blob: 35d94ba2ad870d29211145e425ac8abd5de08c8f (
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
|
---
title: FileReader.readyState
slug: Web/API/FileReader/readyState
tags:
- API
- File API
- Reference
- ファイル
- プロパティ
translation_of: Web/API/FileReader/readyState
---
<div>{{APIRef("File API")}}</div>
<p>{{domxref("FileReader")}} の <strong><code>readyState</code></strong> プロパティは、 <code>FileReader</code> がいる読み取り操作の現在の状態を提供します。 <code>FileReader</code> は以下のいずれかの状態にあります。</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col">値</th>
<th scope="col">状態</th>
<th scope="col">説明</th>
</tr>
<tr>
<td><code>0</code></td>
<td><code>EMPTY</code></td>
<td>Reader が作成されました。まだ読み込まれているメソッドはありません。</td>
</tr>
<tr>
<td><code>1</code></td>
<td><code>LOADING</code></td>
<td>read メソッドが呼び出されました。</td>
</tr>
<tr>
<td><code>2</code></td>
<td><code>DONE</code></td>
<td>操作が完了しています。</td>
</tr>
</thead>
</table>
<dl>
<dt><code>EMPTY</code></dt>
<dd><code>FileReader</code> は作成されましたが、 readAs メソッドはまだ呼び出されていません。</dd>
<dt><code>LOADING</code></dt>
<dd>readAs メソッドが呼び出されました。 {{domxref("File")}} または {{domxref("Blob")}} が読み取り中であり、まだエラーは発生していません。</dd>
<dt><code>DONE</code></dt>
<dd>読み取り操作が完了しています。これは、 {{domxref("File")}} または {{domxref("Blob")}} の全体がメモリに読み込まれたか、ファイル読み取りエラーが発生したか、 {{domxref("FileReader.abort()", "abort()")}} が呼び出され、読み取りがキャンセルされたか、いずれかを意味します。</dd>
</dl>
<h2 id="Example" name="Example">例</h2>
<pre class="brush: js notranslate">var reader = new FileReader();
console.log('EMPTY', reader.readyState); // readyState は 0 になります。
reader.readAsText(blob);
console.log('LOADING', reader.readyState); // readyState は 1 になります。
reader.onloadend = function () {
console.log('DONE', reader.readyState); // readyState は 2 になります。};
</pre>
<h2 id="Value" name="Value">値</h2>
<p>{{domxref("FileReader")}} API のために定義されている3つの状態定数のうちの1つです。</p>
<h2 id="Specifications" name="Specifications">仕様</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName("File API", "#FileReader-interface", "FileReader")}}</td>
<td>{{Spec2("File API")}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザの互換性</h2>
<p>{{Compat("api.FileReader.readyState")}}</p>
<h2 id="See_also" name="See_also">あわせて参照</h2>
<ul>
<li>{{domxref("Blob")}}</li>
</ul>
|