FileReader - Web APIs 编辑
The FileReader
object lets web applications asynchronously read the contents of files (or raw data buffers) stored on the user's computer, using File
or Blob
objects to specify the file or data to read.
File objects may be obtained from a FileList
object returned as a result of a user selecting files using the <input>
element, from a drag and drop operation's DataTransfer
object, or from the mozGetAsFile()
API on an HTMLCanvasElement
.
Important note: FileReader
is used to read file content from the user's (remote) system in secure ways only. It cannot be used to read a file by pathname from a file system. To read files by pathname in JavaScript, standard Ajax solutions should be used to do server-side file reading, with CORS permission if reading cross-domain.
Note:
This feature is available in Web Workers.Constructor
FileReader()
- Returns a newly constructed
FileReader
.
See Using files from web applications for details and examples.
Properties
FileReader.error
Read only- A
DOMException
representing the error that occurred while reading the file. FileReader.readyState
Read only- A number indicating the state of the
FileReader
. This is one of the following:EMPTY
0
No data has been loaded yet. LOADING
1
Data is currently being loaded. DONE
2
The entire read request has been completed. FileReader.result
Read only- The file's contents. This property is only valid after the read operation is complete, and the format of the data depends on which of the methods was used to initiate the read operation.
Event handlers
FileReader.onabort
- A handler for the
abort
event. This event is triggered each time the reading operation is aborted. FileReader.onerror
- A handler for the
error
event. This event is triggered each time the reading operation encounter an error. FileReader.onload
- A handler for the
load
event. This event is triggered each time the reading operation is successfully completed. FileReader.onloadstart
- A handler for the
loadstart
event. This event is triggered each time the reading is starting. FileReader.onloadend
- A handler for the
loadend
event. This event is triggered each time the reading operation is completed (either in success or failure). FileReader.onprogress
- A handler for the
progress
event. This event is triggered while reading aBlob
content.
As FileReader
inherits from EventTarget
, all those events can also be listened for by using the addEventListener
method.
Methods
FileReader.abort()
- Aborts the read operation. Upon return, the
readyState
will beDONE
. FileReader.readAsArrayBuffer()
- Starts reading the contents of the specified
Blob
, once finished, theresult
attribute contains anArrayBuffer
representing the file's data. FileReader.readAsBinaryString()
- Starts reading the contents of the specified
Blob
, once finished, theresult
attribute contains the raw binary data from the file as a string. FileReader.readAsDataURL()
- Starts reading the contents of the specified
Blob
, once finished, theresult
attribute contains adata:
URL representing the file's data. FileReader.readAsText()
- Starts reading the contents of the specified
Blob
, once finished, theresult
attribute contains the contents of the file as a text string. An optional encoding name can be specified.
Events
Listen to these events using addEventListener()
or by assigning an event listener to the oneventname
property of this interface.
abort
- Fired when a read has been aborted, for example because the program called
FileReader.abort()
.
Also available via theonabort
property. error
- Fired when the read failed due to an error.
Also available via theonerror
property. load
- Fired when a read has completed successfully.
Also available via theonload
property. loadend
- Fired when a read has completed, successfully or not.
Also available via theonloadend
property. loadstart
- Fired when a read has started.
Also available via theonloadstart
property. progress
- Fired periodically as data is read.
Also available via theonprogress
property.
Specifications
Specification | Status | Comment |
---|---|---|
File API The definition of 'FileReader' in that specification. | Working Draft | Initial definition |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论