aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/fileerror/index.html
blob: d476b4da4c3a68ea5604b529d58756a95ecdf158 (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
---
title: FileError
slug: Web/API/FileError
translation_of: Web/API/FileError
---
<p>{{APIRef("File System API")}}{{obsolete_header()}}</p>

<h2 id="概述">概述</h2>

<p>用来表示在使用{{ domxref("FileReader") }}接口时发生的错误.</p>

<h2 id="Attributes" name="Attributes">属性</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <td class="header">属性名</td>
   <td class="header">类型</td>
   <td class="header">描述</td>
  </tr>
  <tr>
   <td><code>code</code></td>
   <td><code>unsigned short</code></td>
   <td>The <a href="/zh-cn/nsIDOMFileError#Error_codes" title="zh-cn/nsIDOMFileError#Error codes">error code</a>.</td>
  </tr>
 </tbody>
</table>

<h2 id="Error_codes">Error codes</h2>

<table class="standard-table">
 <thead>
  <tr>
   <td class="header">常量</td>
   <td class="header"></td>
   <td class="header">描述</td>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td><code>ABORT_ERR</code></td>
   <td>3</td>
   <td>文件的操作命令被取消,可能是由于调用了<code>FileReader</code><code>abort()方法</code>.</td>
  </tr>
  <tr>
   <td><code>ENCODING_ERR</code></td>
   <td>5</td>
   <td>文件数据不能准确的被表示为一个data URI.</td>
  </tr>
  <tr>
   <td><code>NOT_FOUND_ERR</code></td>
   <td>1</td>
   <td>找不到文件.</td>
  </tr>
  <tr>
   <td><code>NOT_READABLE_ERR</code></td>
   <td>4</td>
   <td>文件无法被读取.</td>
  </tr>
  <tr>
   <td><code>SECURITY_ERR</code></td>
   <td>2</td>
   <td>由于安全原因,文件不能被访问.</td>
  </tr>
 </tbody>
</table>

<h2 id="相关链接">相关链接</h2>

<ul>
 <li>{{ domxref("FileReader") }}</li>
 <li>{{ domxref("File") }}</li>
 <li>{{ domxref("Blob") }}</li>
 <li>{{ spec("http://www.w3.org/TR/FileAPI/#FileErrorInterface", "Specification: FileAPI FileError", "WD") }}</li>
</ul>

<p>{{ languages( {"en": "en/DOM/FileError" } ) }}</p>