diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-12-28 00:48:08 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-06 20:42:33 +0900 |
commit | 05c0c8331123d86100fe61abf3c519a17d42d159 (patch) | |
tree | c0d6a3f30578125230e24889f57d1cd15bd4c82d /files/ja/web | |
parent | 2eb47daeee2ab845e1ab107fb3196b659a4cfb83 (diff) | |
download | translated-content-05c0c8331123d86100fe61abf3c519a17d42d159.tar.gz translated-content-05c0c8331123d86100fe61abf3c519a17d42d159.tar.bz2 translated-content-05c0c8331123d86100fe61abf3c519a17d42d159.zip |
2021/11/16 時点の英語版に同期
Diffstat (limited to 'files/ja/web')
-rw-r--r-- | files/ja/web/api/file/type/index.md | 79 |
1 files changed, 34 insertions, 45 deletions
diff --git a/files/ja/web/api/file/type/index.md b/files/ja/web/api/file/type/index.md index b686e9baed..e6d659d57b 100644 --- a/files/ja/web/api/file/type/index.md +++ b/files/ja/web/api/file/type/index.md @@ -4,67 +4,56 @@ slug: Web/API/File/type tags: - API - File API - - Reference + - リファレンス - ファイル - ファイルタイプ - プロパティ +browser-compat: api.File.type translation_of: Web/API/File/type --- -<div>{{APIRef("File API")}}</div> +{{APIRef("File API")}} -<p>{{domxref("File")}} オブジェクトによって表されるファイルのメディアタイプ (<a href="/ja/docs/Web/HTTP/Basics_of_HTTP/MIME_types">MIME</a>) を返します。</p> +{{domxref("File")}} オブジェクトによって表されるファイルのメディアタイプ ([MIME](/ja/docs/Web/HTTP/Basics_of_HTTP/MIME_types)) を返します。 -<h2 id="Syntax" name="Syntax">構文</h2> +## 構文 -<pre class="brush: js notranslate">var name = <var>file</var>.type;</pre> +```js +var name = file.type; +``` -<h2 id="Value" name="Value">値</h2> +## 値 -<p>ファイルのタイプを示すメディアタイプ (MIME) を含む文字列。たとえば、 PNG 画像の場合は "image/png" です。</p> +ファイルのタイプを示すメディアタイプ (MIME) を含む文字列。たとえば、 PNG 画像の場合は "image/png" です。 -<h2 id="Example" name="Example">例</h2> +## 例 -<pre class="brush: html notranslate"><input type="file" multiple onchange="showType(this)"> -</pre> +```html +<input type="file" multiple onchange="showType(this)"> +``` -<pre class="brush: js notranslate">function showType(fileInput) { +```js +function showType(fileInput) { var files = fileInput.files; - for (var i = 0; i < files.length; i++) { + for (var i = 0; i < files.length; i++) { var name = files[i].name; var type = files[i].type; alert("Filename: " + name + " , Type: " + type); } -}</pre> - -<p><strong>メモ:</strong> 現在の実装に基づけば、ブラウザーは実際にファイルのバイトストリームを読み取ってメディアタイプを判断している訳ではありません。ファイルの拡張子に基づいて推測します。 PNG 画像ファイルを .txt に改名すると "<em>text/plain</em>" となり、"<em>image/png</em>" とはなりません。さらに <code>file.type</code> は一般的に、画像、 HTML 文書、音声、動画などの一般的なファイルタイプに対してのみ信頼できます。一般的ではないファイルの拡張子に対しては、空の文字列を返します。クライアントの構成 (Windows レジストリなど) によっては、一般的なタイプの場合でも予期しない値が発生することがあります。<strong>開発者は、このプロパティを唯一の検証方法として信頼しないことをお勧めします。</strong></p> - -<h2 id="Specifications" name="Specifications">仕様</h2> - -<table class="standard-table"> - <thead> - <tr> - <th scope="col">仕様書</th> - <th scope="col">状態</th> - <th scope="col">備考</th> - </tr> - </thead> - <tbody> - <tr> - <td>{{SpecName('File API', '#dfn-type', 'type')}}</td> - <td>{{Spec2('File API')}}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザの対応</h2> - -<p>{{Compat("api.File.type")}}</p> - -<h2 id="See_also" name="See_also">関連情報</h2> - -<ul> - <li><a href="/ja/docs/Web/API/File/Using_files_from_web_applications">Web アプリケーションからのファイルの使用</a></li> - <li>ブログ記事: <a href="https://textslashplain.com/2018/07/26/be-skeptical-of-client-reported-mime-content-types/">Be skeptical of client-reported MIME types</a></li> -</ul> +} +``` + +> **Note:** 現在の実装に基づくと、ブラウザーは実際にファイルのバイトストリームを読み取ってメディアタイプを判断している訳ではありません。ファイルの拡張子に基づいて推測します。 PNG 画像ファイルを .txt に改名すると "_text/plain_" となり、"_image/png_" とはなりません。さらに `file.type` は一般的に、画像、 HTML 文書、音声、動画などの一般的なファイルタイプに対してのみ信頼できます。一般的ではないファイルの拡張子に対しては、空の文字列を返します。クライアントの構成 (Windows レジストリーなど) によっては、一般的なタイプの場合でも予期しない値が発生することがあります。**開発者は、このプロパティを唯一の検証方法として信頼しないことをお勧めします。** + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- [ウェブアプリケーションからのファイルの使用](/ja/docs/Web/API/File/Using_files_from_web_applications) +- ブログ記事: [Be skeptical of client-reported MIME types](https://textslashplain.com/2018/07/26/be-skeptical-of-client-reported-mime-content-types/) |