diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-12-27 21:32:30 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-06 20:42:33 +0900 |
commit | 4e6ac017cdd1096518ad80347b6171cfd0cbd5de (patch) | |
tree | 99a36c540544c0636e39e4e78d1d5434751090fe /files/ja/web/api/file/getastext/index.md | |
parent | f360338860b41a2f6e823ea2b5af59cfb7bdb3a6 (diff) | |
download | translated-content-4e6ac017cdd1096518ad80347b6171cfd0cbd5de.tar.gz translated-content-4e6ac017cdd1096518ad80347b6171cfd0cbd5de.tar.bz2 translated-content-4e6ac017cdd1096518ad80347b6171cfd0cbd5de.zip |
Web/API/File 以下を変換準備
Diffstat (limited to 'files/ja/web/api/file/getastext/index.md')
-rw-r--r-- | files/ja/web/api/file/getastext/index.md | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/files/ja/web/api/file/getastext/index.md b/files/ja/web/api/file/getastext/index.md new file mode 100644 index 0000000000..b0711a798d --- /dev/null +++ b/files/ja/web/api/file/getastext/index.md @@ -0,0 +1,84 @@ +--- +title: File.getAsText() +slug: Web/API/File/getAsText +tags: + - API + - File API + - Reference + - ファイル + - メソッド + - リファレンス + - 廃止 + - 非標準 +translation_of: Web/API/File/getAsText +--- +<p>{{APIRef("File API") }}{{non-standard_header}}</p> + +<p>{{obsolete_header(7.0)}}</p> + +<h2 id="Summary" name="Summary">概要</h2> + +<p><code>getAsText</code> メソッドは、テキストとして解釈されるファイルのデータを指定されたエンコーディングを使用して提供します。</p> + +<div class="note"> +<p><strong>メモ:</strong> このメソッドは廃止されています。代わりに {{domxref("FileReader")}} の {{domxref("FileReader.readAsText()","readAsText()")}} メソッドを使用してください。</p> +</div> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre>var <var>str</var> = <var>instanceOfFile</var>.getAsText(<var>encoding</var>);</pre> + +<h3 id="Parameters" name="Parameters">引数</h3> + +<dl> + <dt><var>encoding</var></dt> + <dd>返されるデータに使用するエンコーディングを示す文字列。この文字列が空の場合は、 UTF-8 が使用されます。</dd> +</dl> + +<h3 id="Returns" name="Returns">返値</h3> + +<p>指定された <code>encoding</code> のテキストとして解釈されるファイルのデータを含む文字列。</p> + +<h2 id="Example" name="Example">例</h2> + +<pre class="brush: js">// fileInput is a HTMLInputElement: <input type="file" id="myfileinput" multiple> +var fileInput = document.getElementById("myfileinput"); + +// files is a FileList object (similar to NodeList) +var files = fileInput.files; + +// object for allowed media types +var accept = { + binary : ["image/png", "image/jpeg"], + text : ["text/plain", "text/css", "application/xml", "text/html"] +}; + +var file; + +for (var i = 0; i < files.length; i++) { + file = files[i]; + + // if file type could be detected + if (file !== null) { + if (accept.text.indexOf(file.mediaType) > -1) { + // file is of type text, which we accept + // make sure it's encoded as utf-8 + var data = file.getAsText("utf-8"); + // modify data with string methods + + } else if (accept.binary.indexOf(file.mediaType) > -1) { + // binary + } + } +}</pre> + +<h2 id="Specification" name="Specification">仕様書</h2> + +<p>どの仕様書にも含まれていません。</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li>{{domxref("File")}}</li> + <li>{{domxref("FileReader")}}</li> +</ul> |