diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-12-27 23:54:21 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-06 20:42:33 +0900 |
commit | d10ee6f9f9eb3a56111bf7e3576e46c5e944633f (patch) | |
tree | 709eddcca2b3e6dce400baa04490448774a0b319 /files/ja/web/api | |
parent | df86d70378c43802388be172676b7971ac1eec54 (diff) | |
download | translated-content-d10ee6f9f9eb3a56111bf7e3576e46c5e944633f.tar.gz translated-content-d10ee6f9f9eb3a56111bf7e3576e46c5e944633f.tar.bz2 translated-content-d10ee6f9f9eb3a56111bf7e3576e46c5e944633f.zip |
英語版で削除されたファイルを削除
Diffstat (limited to 'files/ja/web/api')
-rw-r--r-- | files/ja/web/api/file/getasbinary/index.md | 77 | ||||
-rw-r--r-- | files/ja/web/api/file/getasdataurl/index.md | 68 | ||||
-rw-r--r-- | files/ja/web/api/file/getastext/index.md | 84 | ||||
-rw-r--r-- | files/ja/web/api/file/mozfullpath/index.md | 19 |
4 files changed, 0 insertions, 248 deletions
diff --git a/files/ja/web/api/file/getasbinary/index.md b/files/ja/web/api/file/getasbinary/index.md deleted file mode 100644 index e6b74acb06..0000000000 --- a/files/ja/web/api/file/getasbinary/index.md +++ /dev/null @@ -1,77 +0,0 @@ ---- -title: File.getAsBinary() -slug: Web/API/File/getAsBinary -tags: - - API - - File API - - Reference - - ファイル - - メソッド - - 廃止 - - 非標準 -translation_of: Web/API/File/getAsBinary ---- -<p>{{APIRef("File API")}}</p> - -<p>{{non-standard_header}}</p> - -<p>{{obsolete_header(7.0)}}</p> - -<h2 id="Summary" name="Summary">概要</h2> - -<p><code>getAsBinary</code> メソッドを使用すると、生のバイナリ形式でファイルのデータにアクセスできます。</p> - -<div class="note"> -<p><strong>メモ:</strong> このメソッドは廃止されました。代わりに{{domxref("FileReader")}} メソッドである {{domxref("FileReader.readAsArrayBuffer()","readAsArrayBuffer()")}}、もしくは {{domxref("FileReader.readAsBinaryString()","readAsBinaryString()")}} を実行してください。</p> -</div> - -<h2 id="Syntax" name="Syntax">構文</h2> - -<pre>var binary = <var>instanceOfFile</var>.getAsBinary();</pre> - -<h3 id="Returns" name="Returns">返値</h3> - -<p>文字列です。</p> - -<h2 id="Example" name="Example">例</h2> - -<pre class="brush:js;">// fileInput is an HTMLInputElement: <input type="file" id="myfileinput" multiple> -var fileInput = document.getElementById("myfileinput"); - -// files は NodeList と似た FileList オブジェクトへの参照 -var files = fileInput.files; - -// 許容するメディアタイプを記したオブジェクト -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 !== null) { - if (accept.binary.indexOf(file.type) > -1) { - // バイナリファイルの場合の処理 - var data = file.getAsBinary(); - } else if (accept.text.indexOf(file.type) > -1) { - // テキストファイルの場合の処理 - var data = file.getAsText(); - // String のメソッドでデータを加工する処理など… - } - } -}</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> diff --git a/files/ja/web/api/file/getasdataurl/index.md b/files/ja/web/api/file/getasdataurl/index.md deleted file mode 100644 index 4d73665494..0000000000 --- a/files/ja/web/api/file/getasdataurl/index.md +++ /dev/null @@ -1,68 +0,0 @@ ---- -title: File.getAsDataURL() -slug: Web/API/File/getAsDataURL -tags: - - API - - File API - - Obsolete - - Reference - - ファイル - - メソッド - - 廃止 - - 非標準 -translation_of: Web/API/File/getAsDataURL ---- -<div>{{APIRef("File API") }}</div> - -<p>{{non-standard_header}}</p> - -<p>{{deprecated_header(7.0)}}</p> - -<h2 id="Summary" name="Summary">概要</h2> - -<p>getAsDataURL は、参照されるファイルの内容全体をエンコードした <a href="/ja/docs/data_URIs"><code>data:</code></a> URL を提供します。</p> - -<div class="note"> -<p><strong>メモ:</strong> このメソッドは廃止されました。代わりに {{domxref("FileReader")}} の {{domxref("FileReader.readAsDataURL","readAsDataURL()")}} メソッドを使用する必要があります。</p> -</div> - -<h2 id="Syntax" name="Syntax">構文</h2> - -<pre>var url = <var>instanceOfFile</var>.getAsDataURL();</pre> - -<h3 id="Returns" name="Returns">返値</h3> - -<p><a href="/ja/docs/data_URIs"><code>data:</code></a> URL を表す文字列</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; - -// array with acceptable file types -var accept = ["image/png"]; - -// img is a HTMLImgElement: <img id="myimg"> -var img = document.getElementById("myimg"); - -// if we accept the first selected file type -if (accept.indexOf(files[0].mediaType) > -1) { - // display the image - // same as <img src="data:image/png,<imagedata>"> - img.src = files[0].getAsDataURL(); -} -</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> diff --git a/files/ja/web/api/file/getastext/index.md b/files/ja/web/api/file/getastext/index.md deleted file mode 100644 index b0711a798d..0000000000 --- a/files/ja/web/api/file/getastext/index.md +++ /dev/null @@ -1,84 +0,0 @@ ---- -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> diff --git a/files/ja/web/api/file/mozfullpath/index.md b/files/ja/web/api/file/mozfullpath/index.md deleted file mode 100644 index d0daa94b99..0000000000 --- a/files/ja/web/api/file/mozfullpath/index.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -title: File.mozFullPath -slug: Web/API/File/mozFullPath -tags: - - API - - File - - File API - - Files - - NeedsContent - - mozFullPath - - ファイル - - プロパティ - - リファレンス - - 非標準 -translation_of: Web/API/File/mozFullPath ---- -<p>{{APIRef("File API")}}{{draft}}{{Non-standard_header}}</p> - -<p><span class="seoSummary">{{domxref("File")}} インターフェイスに対する特権的な拡張として、<code><strong>mozFullPath</strong></code> プロパティには、表現されたファイルの絶対パス名が含まれます。</span> このプロパティはブラウザコード、または古いスタイルの XPCOM ベースの Firefox 拡張機能でのみ使用できます。Web コンテンツでは使用できません。</p> |