FileReader: FileReader() コンストラクター
メモ: この機能はウェブワーカー内で利用可能です。
FileReader()
コンストラクターは、新しい FileReader
を作成します。
FileReader
の使用方法の詳細については、ウェブアプリケーションからのファイルの使用を参照してください。
構文
js
new FileReader()
引数
なし。
例
次のコードスニペットは、FileReader
オブジェクトを FileReader()
コンストラクターで作成し、引き続きそのオブジェクトを使用する方法を示しています。
js
function printFile(file) {
const reader = new FileReader();
reader.onload = (evt) => {
console.log(evt.target.result);
};
reader.readAsText(file);
}
仕様書
Specification |
---|
File API # filereaderConstrctr |
ブラウザーの互換性
BCD tables only load in the browser