diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-08-27 00:02:55 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-27 00:02:55 +0900 |
commit | 2cdc35c2d325c408b91aaaa06b7363986f14c249 (patch) | |
tree | 16e03160a3cffbb1643cafbf1021b41575644125 | |
parent | e784f81665d6d497f98487403d76cc8020943ee0 (diff) | |
download | translated-content-revert-2234-20210827-Global_Objects/Promise/allSettled.tar.gz translated-content-revert-2234-20210827-Global_Objects/Promise/allSettled.tar.bz2 translated-content-revert-2234-20210827-Global_Objects/Promise/allSettled.zip |
Revert "Global_Objects/Promise/allSettled を更新 (#2234)"revert-2234-20210827-Global_Objects/Promise/allSettled
This reverts commit e784f81665d6d497f98487403d76cc8020943ee0.
-rw-r--r-- | files/ja/web/javascript/reference/global_objects/promise/allsettled/index.html | 92 | ||||
-rw-r--r-- | files/ja/web/javascript/reference/global_objects/promise/allsettled/index.md | 99 |
2 files changed, 92 insertions, 99 deletions
diff --git a/files/ja/web/javascript/reference/global_objects/promise/allsettled/index.html b/files/ja/web/javascript/reference/global_objects/promise/allsettled/index.html new file mode 100644 index 0000000000..117abc02c9 --- /dev/null +++ b/files/ja/web/javascript/reference/global_objects/promise/allsettled/index.html @@ -0,0 +1,92 @@ +--- +title: Promise.allSettled() +slug: Web/JavaScript/Reference/Global_Objects/Promise/allSettled +tags: + - JavaScript + - Method + - Promise + - Reference + - allSettled + - asynchronous + - プロミス + - メソッド + - 非同期 +translation_of: Web/JavaScript/Reference/Global_Objects/Promise/allSettled +--- +<div>{{JSRef}}</div> + +<p><code><strong>Promise.allSettled()</strong></code> メソッドは、与えられたすべてのプロミスが満足したか拒否された後に、それぞれのプロミスの結果を記述した配列オブジェクトで解決されるプロミスを返します。</p> + +<p>一般的には、複数の非同期タスクがあり、お互いに依存せずに正常に完了する場合や、各プロミスの結果を常に知りたい場合に使用されます。</p> + +<p>これと比較して、 {{jsxref("Promise.all()")}} で返されるプロミスは、タスクがお互いに依存している場合や、タスクのいずれかが拒否されたときにすぐに拒否したい場合にはより適切かもしれません。</p> + +<div>{{EmbedInteractiveExample("pages/js/promise-allsettled.html")}}</div> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="syntaxbox notranslate"><var>Promise</var>.allSettled(<var>iterable</var>);</pre> + +<h3 id="Parameters" name="Parameters">引数</h3> + +<dl> + <dt><code><var>iterable</var></code></dt> + <dd>{{jsxref("Array")}} などの<a href="/ja/docs/Web/JavaScript/Guide/iterable">反復可能</a>オブジェクトで、それぞれの要素が <code>Promise</code> であるものです。</dd> +</dl> + +<h3 id="Return_value" name="Return_value">返値</h3> + +<p><strong>待ち状態</strong>の {{jsxref("Promise")}} で、指定されたプロミスの集合に含まれるすべてのプロミスが、正常に解決されるか拒否されるかのどちらかで完了すると、<strong>非同期に</strong>解決されます。その際、返されたプロミスのハンドラーには、元のプロミスの集合に含まれるの各プロミスの結果を含む配列が入力として渡されます。</p> + +<p>ただし、空の反復可能オブジェクトが引数として渡された<strong>場合に限り</strong>、 <code>Promise.allSettled()</code> は空の配列として<strong>解決済みの</strong> <code>Promise</code> オブジェクトを返します。</p> + +<p>出力されるそれぞれのオブジェクトには、 <code>status</code> の文字列が存在します。 status が <code>fulfilled</code> であれば、 <code>value</code> が存在します。 status が <code>rejected</code> であれば、 <code>reason</code> が存在します。 value (または reason) はそれぞれのプロミスがどの値で解決 (または拒否) されたかを反映します。</p> + +<h2 id="Examples" name="Examples">例</h2> + +<h3 id="Using_Promise.allSettled" name="Using_Promise.allSettled">Promise.allSettled の使用</h3> + +<pre class="brush: js notranslate">Promise.allSettled([ + Promise.resolve(33), + new Promise(resolve => setTimeout(() => resolve(66), 0)), + 99, + Promise.reject(new Error('an error')) +]) +.then(values => console.log(values)); + +// [ +// {status: "fulfilled", value: 33}, +// {status: "fulfilled", value: 66}, +// {status: "fulfilled", value: 99}, +// {status: "rejected", reason: Error: an error} +// ] +</pre> + +<h2 id="Specifications" name="Specifications">仕様書</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">仕様書</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('ESDraft', '#sec-promise.allsettled', 'Promise.allSettled')}}</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<p>{{Compat("javascript.builtins.Promise.allSettled")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li><a href="/ja/docs/Archive/Add-ons/Techniques/Promises">プロミス</a></li> + <li><a href="/ja/docs/Web/JavaScript/Guide/Using_promises">プロミスの使用</a></li> + <li><a href="/ja/docs/Learn/JavaScript/Asynchronous/Promises">プロミスを使った行儀のよい非同期のプログラミング</a></li> + <li>{{jsxref("Promise")}}</li> + <li>{{jsxref("Promise.all()")}}</li> +</ul> diff --git a/files/ja/web/javascript/reference/global_objects/promise/allsettled/index.md b/files/ja/web/javascript/reference/global_objects/promise/allsettled/index.md deleted file mode 100644 index e96b5fe08e..0000000000 --- a/files/ja/web/javascript/reference/global_objects/promise/allsettled/index.md +++ /dev/null @@ -1,99 +0,0 @@ ---- -title: Promise.allSettled() -slug: Web/JavaScript/Reference/Global_Objects/Promise/allSettled -tags: - - JavaScript - - メソッド - - プロミス - - Reference - - allSettled - - 非同期 - - Polyfill -browser-compat: javascript.builtins.Promise.allSettled -translation_of: Web/JavaScript/Reference/Global_Objects/Promise/allSettled ---- -{{JSRef}} - -**`Promise.allSettled()`** メソッドは、与えられたすべてのプロミスが履行されたか拒否された後に、それぞれのプロミスの結果を記述した配列オブジェクトで解決されるプロミスを返します。 - -一般的には、複数の非同期タスクがあり、お互いに依存せずに正常に完了する場合や、各プロミスの結果を常に知りたい場合に使用されます。 - -これに対して、 {{jsxref("Promise.all()")}} で返されるプロミスは、タスクがお互いに依存している場合や、タスクのいずれかが拒否されたときにすぐに拒否したい場合にはより適切かもしれません。 - -{{EmbedInteractiveExample("pages/js/promise-allsettled.html")}} - -## 構文 - -```js -Promise.allSettled(iterable); -``` - -### 引数 - -- `iterable` - - : {{jsxref("Array")}} などの[反復可能](/ja/docs/Web/JavaScript/Reference/Iteration_protocols)オブジェクトで、それぞれの要素が `Promise` であるものです。 - -### 返値 - -**待ち状態**の {{jsxref("Promise")}} で、指定されたプロミスの集合に含まれるすべてのプロミスが、正常に履行されるか拒否されるかのどちらかで完了すると、**非同期に**解決されます。その際、返されたプロミスのハンドラーには、元のプロミスの集合に含まれるの各プロミスの結果を含む配列が入力として渡されます。 - -ただし、空の反復可能オブジェクトが引数として渡された**場合に限り**、 `Promise.allSettled()` は空の配列として**解決済みの** `Promise` オブジェクトを返します。 - -出力されるそれぞれのオブジェクトには、 `status` の文字列が存在します。 status が `fulfilled` (履行) であれば、 `value` が存在します。 status が `rejected` (拒否) であれば、 `reason` が存在します。 value (または reason) はそれぞれのプロミスがどの値で履行 (または拒否) されたかを反映します。 - -## 例 - -### Promise.allSettled の使用 - -#### {{JSxRef("Promise.then", "Promise.prototype.then()")}} -```js -Promise.allSettled([ - Promise.resolve(33), - new Promise(resolve => setTimeout(() => resolve(66), 0)), - 99, - Promise.reject(new Error('an error')) -]) -.then(values => console.log(values)); - -// [ -// {status: "fulfilled", value: 33}, -// {status: "fulfilled", value: 66}, -// {status: "fulfilled", value: 99}, -// {status: "rejected", reason: Error: an error} -// ] -``` - -#### {{jsxref("Operators/await", "await")}} -```js -const values = await Promise.allSettled([ - Promise.resolve(33), - new Promise(resolve => setTimeout(() => resolve(66), 0)), - 99, - Promise.reject(new Error('an error')) -]) -console.log(values) - -// [ -// {status: "fulfilled", value: 33}, -// {status: "fulfilled", value: 66}, -// {status: "fulfilled", value: 99}, -// {status: "rejected", reason: Error: an error} -// ] -``` - -## 仕様書 - -{{Specifications}} - -## ブラウザーの互換性 - -{{Compat}} - -## 関連情報 - -- `Promise.allSettled` のポリフィルが [`core-js`](https://github.com/zloirock/core-js#ecmascript-promise) で利用できます -- [Promises](/ja/docs/Archive/Add-ons/Techniques/Promises) -- [プロミスの使用](/ja/docs/Web/JavaScript/Guide/Using_promises) -- [プロミスを使った行儀のよい非同期のプログラミング](/ja/docs/Learn/JavaScript/Asynchronous/Promises) -- {{jsxref("Promise")}} -- {{jsxref("Promise.all()")}} |