aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/xmlhttprequest/upload/index.html
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2022-01-29 01:41:41 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2022-02-05 13:19:25 +0900
commit3209b4d4ad9db0c919bdf60c01c219845fe5a250 (patch)
treeeb101ee0b55b2b885d2ccde8c2d90dab7e60532d /files/ja/web/api/xmlhttprequest/upload/index.html
parent1e5d0f7fe35befbbdd08f5c9b3b4eafd42975ae8 (diff)
downloadtranslated-content-3209b4d4ad9db0c919bdf60c01c219845fe5a250.tar.gz
translated-content-3209b4d4ad9db0c919bdf60c01c219845fe5a250.tar.bz2
translated-content-3209b4d4ad9db0c919bdf60c01c219845fe5a250.zip
XMLHttpRequest のプロパティの記事を移行
Diffstat (limited to 'files/ja/web/api/xmlhttprequest/upload/index.html')
-rw-r--r--files/ja/web/api/xmlhttprequest/upload/index.html103
1 files changed, 0 insertions, 103 deletions
diff --git a/files/ja/web/api/xmlhttprequest/upload/index.html b/files/ja/web/api/xmlhttprequest/upload/index.html
deleted file mode 100644
index a570608060..0000000000
--- a/files/ja/web/api/xmlhttprequest/upload/index.html
+++ /dev/null
@@ -1,103 +0,0 @@
----
-title: XMLHttpRequest.upload
-slug: Web/API/XMLHttpRequest/upload
-tags:
- - AJAX
- - API
- - Monitoring XMLHttpRequest
- - Property
- - Read-only
- - Reference
- - Sending Files
- - Uploading
- - XHR
- - XHR Uploads
- - XMLHttpRequest
- - XMLHttpRequest Uploads
- - XMLHttpRequestUpload
- - upload
- - アップロード
- - ファイル送信
-translation_of: Web/API/XMLHttpRequest/upload
----
-<div>{{APIRef('XMLHttpRequest')}}</div>
-
-<p><span class="seoSummary">{{domxref("XMLHttpRequest")}} の <code>upload</code> プロパティは、アップロードの進捗を監視することができる {{domxref("XMLHttpRequestUpload")}} オブジェクトを返します。</span>これは不透過なオブジェクトですが、 {{domxref("XMLHttpRequestEventTarget")}} でもあるため、進捗を追跡するために添付することができます。</p>
-
-<p>以下のイベントは upload オブジェクトを起動してアップロードを監視する目に使用することができます。</p>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <td class="header">イベント</td>
- <td class="header">イベントリスナー</td>
- <td class="header">解説</td>
- </tr>
- <tr>
- <td>{{event("loadstart")}}</td>
- <td>{{domxref("XMLHttpRequest.onloadstart", "onloadstart")}}</td>
- <td>アップロードが始まった。</td>
- </tr>
- <tr>
- <td>{{event("progress")}}</td>
- <td>{{domxref("XMLHttpRequest.onprogress", "onprogress")}}</td>
- <td>進捗の量を示すために定期的に発生する。</td>
- </tr>
- <tr>
- <td>{{event("abort")}}</td>
- <td>{{domxref("XMLHttpRequest.onabort", "onabort")}}</td>
- <td>アップロード操作が中断された。</td>
- </tr>
- <tr>
- <td>{{event("error")}}</td>
- <td>{{domxref("XMLHttpRequest.onerror", "onerror")}}</td>
- <td>アップロードがエラーのために失敗した。</td>
- </tr>
- <tr>
- <td>{{event("load")}}</td>
- <td>{{domxref("XMLHttpRequest.onload", "onload")}}</td>
- <td>アップロードが完全に成功した。</td>
- </tr>
- <tr>
- <td>{{event("timeout")}}</td>
- <td>{{domxref("XMLHttpRequest.ontimeout", "ontimeout")}}</td>
- <td>返事が {{domxref("XMLHttpRequest.timeout")}} で指定された時間間隔内に届かなかったため、アップロードがタイムアウトされた。</td>
- </tr>
- <tr>
- <td>{{event("loadend")}}</td>
- <td>{{domxref("XMLHttpRequest.onloadend", "onloadend")}}</td>
- <td>アップロードが終了した。このイベントでは成功か失敗かを区別することはできず、結果にかかわらずアップロードが終了したときに送信されます。このイベントの前に、 <code>load</code>, <code>error</code>, <code>abort</code>, <code>timeout</code> のうちの1つがアップロードが終了した理由を示すために配信されます。</td>
- </tr>
- </tbody>
-</table>
-
-<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('XMLHttpRequest', '#the-upload-attribute')}}</td>
- <td>{{Spec2('XMLHttpRequest')}}</td>
- <td>WHATWG living standard</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
-
-<p>{{Compat("api.XMLHttpRequest.upload")}}</p>
-
-<h2 id="See_also" name="See_also">関連情報</h2>
-
-<ul>
- <li><a href="/ja/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest">XMLHttpRequest の使用</a></li>
- <li><a href="/ja/docs/Web/API/File_Handle_API">FileHandle API</a></li>
- <li><a href="/ja/docs/Web/API/File_and_Directory_Entries_API">File and Directory Entries API</a></li>
-</ul>