diff options
14 files changed, 37 insertions, 37 deletions
diff --git a/files/ja/mozilla/firefox/releases/69/index.html b/files/ja/mozilla/firefox/releases/69/index.html index 5f2a43d7e0..2fb85666a7 100644 --- a/files/ja/mozilla/firefox/releases/69/index.html +++ b/files/ja/mozilla/firefox/releases/69/index.html @@ -97,7 +97,7 @@ translation_of: Mozilla/Firefox/Releases/69 <ul> <li><a href="/ja/docs/Web/JavaScript/Reference/Classes#Field_declarations">パブリッククラスフィールド</a> をデフォルトで有効にしました ({{bug(1555464)}})。詳しくは <a href="/ja/docs/Web/JavaScript/Reference/Classes/Class_fields">Class fields</a> もご覧ください。</li> - <li>promise の拒絶イベントである <code><a href="/ja/docs/Web/API/Window/unhandledrejection_event">unhandledrejection</a></code> および <code><a href="/ja/docs/Web/API/Window/rejectionhandled_event">rejectionhandled</a></code> をデフォルトで有効にしました ({{bug(1362272)}})。これらの動作について詳しくは {{SectionOnPage("/docs/Web/JavaScript/Guide/Using_promises", "Promise rejection events")}} をご覧ください。</li> + <li>promise の拒否イベントである <code><a href="/ja/docs/Web/API/Window/unhandledrejection_event">unhandledrejection</a></code> および <code><a href="/ja/docs/Web/API/Window/rejectionhandled_event">rejectionhandled</a></code> をデフォルトで有効にしました ({{bug(1362272)}})。これらの動作について詳しくは {{SectionOnPage("/docs/Web/JavaScript/Guide/Using_promises", "Promise rejection events")}} をご覧ください。</li> </ul> <h3 id="HTTP" name="HTTP">HTTP</h3> diff --git a/files/ja/web/api/document/requeststorageaccess/index.html b/files/ja/web/api/document/requeststorageaccess/index.html index 7c1368fb23..b4952aa6bb 100644 --- a/files/ja/web/api/document/requeststorageaccess/index.html +++ b/files/ja/web/api/document/requeststorageaccess/index.html @@ -14,7 +14,7 @@ translation_of: Web/API/Document/requestStorageAccess --- <div>{{APIRef}}</div> -<p><strong><code>requestStorageAccess()</code></strong> は {{domxref("Document")}} インターフェイスのメソッドで、ファーストパーティのストレージへのアクセスが許可されたら解決し、アクセスが拒否されたら拒絶される {{jsxref("Promise")}} を返します。</p> +<p><strong><code>requestStorageAccess()</code></strong> は {{domxref("Document")}} インターフェイスのメソッドで、ファーストパーティのストレージへのアクセスが許可されたら解決し、アクセスが拒否されたら拒否される {{jsxref("Promise")}} を返します。</p> <h2 id="Conditions_for_granting_storage_access" name="Conditions_for_granting_storage_access">ストレージへのアクセスが許可される条件</h2> @@ -22,14 +22,14 @@ translation_of: Web/API/Document/requestStorageAccess <ol> <li>文書がすでにアクセスを許可されていれば、解決。</li> - <li>文書が null オリジンを持っていれば、拒絶。</li> + <li>文書が null オリジンを持っていれば、拒否。</li> <li>文書のフレームが主フレームであれば、解決。</li> <li>副フレームのオリジンが主フレームのものと同じであれば、解決。</li> <li>副フレームがサンドボックス化されていなければ、7へ飛ぶ。</li> - <li>副フレームにトークン <code>allow-storage-access-by-user-activation</code> がなければ、拒絶。</li> - <li>副フレームの親フレームが最上位フレームでなければ、拒絶。</li> - <li>ブラウザーがユーザージェスチャーを処理中でなければ、拒絶。</li> - <li>ブラウザーが持っている追加の規則をチェック。例えば、ホワイトリスト、ブラックリスト、端末上の分類、ユーザー設定、クリックジャック防止の推測、ユーザーへの明示的なパーミッションの確認など。いくつかの規則が満たされていなければ、拒絶。</li> + <li>副フレームにトークン <code>allow-storage-access-by-user-activation</code> がなければ、拒否。</li> + <li>副フレームの親フレームが最上位フレームでなければ、拒否。</li> + <li>ブラウザーがユーザージェスチャーを処理中でなければ、拒否。</li> + <li>ブラウザーが持っている追加の規則をチェック。例えば、ホワイトリスト、ブラックリスト、端末上の分類、ユーザー設定、クリックジャック防止の推測、ユーザーへの明示的なパーミッションの確認など。いくつかの規則が満たされていなければ、拒否。</li> <li>文書にクッキーやその他のサイトストレージへのアクセスを許可し、将来の {{domxref("Document.hasStorageAccess()")}} および <code>requestStorageAccess()</code> の呼び出しのためにその事実を保存。</li> </ol> @@ -99,7 +99,7 @@ translation_of: Web/API/Document/requestStorageAccess <h3 id="Return_value" name="Return_value">返値</h3> -<p>ファーストパーティのストレージへのアクセスが許可されたら <code>undefined</code> で満たされ、アクセスが拒否されたら拒絶される {{jsxref("Promise")}} です。</p> +<p>ファーストパーティのストレージへのアクセスが許可されたら <code>undefined</code> で満たされ、アクセスが拒否されたら拒否される {{jsxref("Promise")}} です。</p> <p>Promise が解決されると、 Promise が満たされたか拒否されたかに関わらず、ユーザージェスチャーが処理されているかのように解決ハンドラーが実行されます。</p> diff --git a/files/ja/web/api/mediadevices/getusermedia/index.html b/files/ja/web/api/mediadevices/getusermedia/index.html index 2ae1912292..53f62988fc 100644 --- a/files/ja/web/api/mediadevices/getusermedia/index.html +++ b/files/ja/web/api/mediadevices/getusermedia/index.html @@ -24,7 +24,7 @@ translation_of: Web/API/MediaDevices/getUserMedia <p>これは {{domxref("MediaStream")}} オブジェクトに解決する {{jsxref("Promise")}} を返します。ユーザーが拒否した場合や、一致するメディアが利用できない場合、 Promise はそれぞれ <code>NotAllowedError</code> または <code>NotFoundError</code> で拒否されます。</p> <div class="note"> -<p><strong>メモ:</strong> ユーザーが選択する必要が全くなく、リクエストを単純に無視できる場合、返却された Promise が解決または拒絶の<em>どちらにもならない</em>可能性があります。</p> +<p><strong>メモ:</strong> ユーザーが選択する必要が全くなく、リクエストを単純に無視できる場合、返却された Promise が解決または拒否の<em>どちらにもならない</em>可能性があります。</p> </div> <p>一般的に、 {{domxref("MediaDevices")}} のシングルトンオブジェクトは以下のように、 {{domxref("navigator.mediaDevices")}} を使用してアクセスします。</p> diff --git a/files/ja/web/api/navigator/getbattery/index.html b/files/ja/web/api/navigator/getbattery/index.html index a17409ec9a..b324dfb6eb 100644 --- a/files/ja/web/api/navigator/getbattery/index.html +++ b/files/ja/web/api/navigator/getbattery/index.html @@ -30,7 +30,7 @@ translation_of: Web/API/Navigator/getBattery <h2 id="Exceptions" name="Exceptions">例外</h2> -<p>このメソッドは真の例外を発生させません。代わりに、返された promise を拒絶し、 {{domxref("DOMException")}} の中に <code>name</code> を次のうちの一つに設定します。</p> +<p>このメソッドは真の例外を発生させません。代わりに、返されたプロミスが拒否され、 {{domxref("DOMException")}} の中に <code>name</code> を次のうちの一つに設定します。</p> <dl> <dt><code>SecurityError</code></dt> diff --git a/files/ja/web/api/promiserejectionevent/index.html b/files/ja/web/api/promiserejectionevent/index.html index 7f45e89bdf..1f7e1a8487 100644 --- a/files/ja/web/api/promiserejectionevent/index.html +++ b/files/ja/web/api/promiserejectionevent/index.html @@ -15,7 +15,7 @@ translation_of: Web/API/PromiseRejectionEvent --- <div>{{APIRef("HTML DOM")}}</div> -<p><span class="seoSummary"><strong><code>PromiseRejectionEvent</code></strong> インターフェイスは、 JavaScript の {{jsxref("Promise")}} が拒絶されたときにグローバルスクリプトコンテキストに送信されるイベントを表します。</span>これらのイベントは、測定やデバッグ目的に使用すると特に有益です。</p> +<p><span class="seoSummary"><strong><code>PromiseRejectionEvent</code></strong> インターフェイスは、 JavaScript の {{jsxref("Promise")}} が拒否されたときにグローバルスクリプトコンテキストに送信されるイベントを表します。</span>これらのイベントは、測定やデバッグ目的に使用すると特に有益です。</p> <h2 id="Constructor" name="Constructor">コンストラクター</h2> @@ -30,9 +30,9 @@ translation_of: Web/API/PromiseRejectionEvent <dl> <dt>{{domxref("PromiseRejectionEvent.promise")}} {{readonlyInline}}</dt> - <dd>拒絶された JavaScript の {{jsxref("Promise")}}。</dd> + <dd>拒否された JavaScript の {{jsxref("Promise")}}。</dd> <dt>{{domxref("PromiseRejectionEvent.reason")}} {{readOnlyInline}}</dt> - <dd>{{jsxref("Promise.reject()")}} に渡される Promise が拒絶された理由を示す値、または {{jsxref("Object")}}。</dd> + <dd>{{jsxref("Promise.reject()")}} に渡される Promise が拒否された理由を示す値、または {{jsxref("Object")}}。</dd> </dl> <h2 id="Methods" name="Methods">メソッド</h2> @@ -43,9 +43,9 @@ translation_of: Web/API/PromiseRejectionEvent <dl> <dt>{{Event("rejectionhandled")}}</dt> - <dd>JavaScript の {{jsxref("Promise")}} が拒絶され、promise の reject イベントハンドラーのコードが実行された後に発生する。</dd> + <dd>JavaScript の {{jsxref("Promise")}} が拒否され、promise の reject イベントハンドラーのコードが実行された後に発生する。</dd> <dt>{{Event("unhandledrejection")}}</dt> - <dd>reject に対するイベントハンドラーがない状態で JavaScript の {{jsxref("Promise")}} が拒絶されたときに発生する。</dd> + <dd>reject に対するイベントハンドラーがない状態で JavaScript の {{jsxref("Promise")}} が拒否されたときに発生する。</dd> </dl> <h2 id="Examples" name="Examples">例</h2> diff --git a/files/ja/web/api/promiserejectionevent/promise/index.html b/files/ja/web/api/promiserejectionevent/promise/index.html index ae55501f0d..64cf00fcd8 100644 --- a/files/ja/web/api/promiserejectionevent/promise/index.html +++ b/files/ja/web/api/promiserejectionevent/promise/index.html @@ -15,7 +15,7 @@ translation_of: Web/API/PromiseRejectionEvent/promise --- <div>{{APIRef("HTML DOM") }}</div> -<div>{{domxref("PromiseRejectionEvent")}}インターフェイスの読み取り専用プロパティである <code><strong>promise</strong></code> は、拒絶された JavaScript の {{jsxref("Promise")}} を表します。promise が拒絶された理由は、イベントの {{domxref("PromiseRejectionEvent.reason")}} プロパティを検査することでわかります。</div> +<div>{{domxref("PromiseRejectionEvent")}}インターフェイスの読み取り専用プロパティである <code><strong>promise</strong></code> は、拒否された JavaScript の {{jsxref("Promise")}} を表します。promise が拒否された理由は、イベントの {{domxref("PromiseRejectionEvent.reason")}} プロパティを検査することでわかります。</div> <h2 id="Syntax" name="Syntax">構文</h2> @@ -23,7 +23,7 @@ translation_of: Web/API/PromiseRejectionEvent/promise <h3 id="Value" name="Value">値</h3> -<p>reject(拒絶) されて、処理されていない JavaScript の{{jsxref("Promise")}}。</p> +<p>reject(拒否) されて、処理されていない JavaScript の{{jsxref("Promise")}}。</p> <h2 id="Examples" name="Examples">例</h2> diff --git a/files/ja/web/api/promiserejectionevent/promiserejectionevent/index.html b/files/ja/web/api/promiserejectionevent/promiserejectionevent/index.html index ec69ed9a7b..ba81683d0d 100644 --- a/files/ja/web/api/promiserejectionevent/promiserejectionevent/index.html +++ b/files/ja/web/api/promiserejectionevent/promiserejectionevent/index.html @@ -14,7 +14,7 @@ translation_of: Web/API/PromiseRejectionEvent/PromiseRejectionEvent --- <div>{{APIRef("HTML DOM")}}</div> -<p><code><strong>PromiseRejectionEvent()</strong></code> コンストラクタは、JavaScript の {{jsxref("Promise")}} が拒絶されたときに発火するイベントを表す {{domxref("PromiseRejectionEvent")}} を新しく生成し返します。</p> +<p><code><strong>PromiseRejectionEvent()</strong></code> コンストラクタは、JavaScript の {{jsxref("Promise")}} が拒否されたときに発火するイベントを表す {{domxref("PromiseRejectionEvent")}} を新しく生成し返します。</p> <h2 id="構文">構文</h2> @@ -32,9 +32,9 @@ translation_of: Web/API/PromiseRejectionEvent/PromiseRejectionEvent <dt><code>type</code></dt> <dd><code>PromiseRejectionEvent</code> の型名を表す文字列。これは大文字小文字を区別し、{{event("rejectionhandled", '"rejectionhandled"')}} か {{event("unhandledrejection", '"unhandledrejection"')}} のいずれかである必要がある。</dd> <dt><code>promise</code></dt> - <dd>拒絶された {{jsxref("Promise")}}。</dd> + <dd>拒否された {{jsxref("Promise")}}。</dd> <dt><code>reason</code></dt> - <dd>promise が拒絶された理由を表すいずれかの値、または {{jsxref("Object")}}。</dd> + <dd>promise が拒否された理由を表すいずれかの値、または {{jsxref("Object")}}。</dd> </dl> <h2 id="仕様">仕様</h2> diff --git a/files/ja/web/api/window/rejectionhandled_event/index.html b/files/ja/web/api/window/rejectionhandled_event/index.html index 335d40fcdb..75eccd8a77 100644 --- a/files/ja/web/api/window/rejectionhandled_event/index.html +++ b/files/ja/web/api/window/rejectionhandled_event/index.html @@ -19,7 +19,7 @@ translation_of: Web/API/Window/rejectionhandled_event --- <div>{{APIRef("HTML DOM")}}</div> -<p><span class="seoSummary"><strong><code>rejectionhandled</code></strong> イベントは、 JavaScript の {{jsxref("Promise")}} が拒絶されたものの、その後で Promise の拒絶が処理された場合にスクリプトのグローバルスコープ (ふつうは {{domxref("window")}} だが {{domxref("Worker")}} の場合もある) に送られます。</span>これは、 Promise が拒絶されたが拒絶の手助けがないときに送信される {{domxref("Window.unhandledrejection_event", "unhandledrejection")}} イベントと並行して、デバッグや一般的なアプリケーションの回復に使用できます。</p> +<p><span class="seoSummary"><strong><code>rejectionhandled</code></strong> イベントは、 JavaScript の {{jsxref("Promise")}} が拒否されたものの、その後で Promise の拒否が処理された場合にスクリプトのグローバルスコープ (ふつうは {{domxref("window")}} だが {{domxref("Worker")}} の場合もある) に送られます。</span>これは、 Promise が拒否されたが拒否の手助けがないときに送信される {{domxref("Window.unhandledrejection_event", "unhandledrejection")}} イベントと並行して、デバッグや一般的なアプリケーションの回復に使用できます。</p> <table class="properties"> <tbody> @@ -44,7 +44,7 @@ translation_of: Web/API/Window/rejectionhandled_event <h2 id="Example" name="Example">例</h2> -<p><code>rejectionhandled</code> イベントを使用して、拒絶された Promise を、拒絶された理由を添えてコンソールに出力することができます。</p> +<p><code>rejectionhandled</code> イベントを使用して、拒否された Promise を、拒否された理由を添えてコンソールに出力することができます。</p> <pre class="brush: js">window.addEventListener("rejectionhandled", event => { console.log("Promise rejected; reason: " + event.reason); diff --git a/files/ja/web/api/worker/index.html b/files/ja/web/api/worker/index.html index db0a319578..69ec3abc87 100644 --- a/files/ja/web/api/worker/index.html +++ b/files/ja/web/api/worker/index.html @@ -64,10 +64,10 @@ translation_of: Web/API/Worker <dd><code>Worker</code> オブジェクトが <a href="/ja/docs/Web/API/Web_Workers_API/Structured_clone_algorithm">シリアライズ解除</a>できないというメッセージを受け取ったときに発行されます。<br> <code><a href="/ja/docs/Web/API/Worker/onmessageerror">onmessageerror</a></code> プロパティからも利用できます。</dd> <dt><code><a href="/ja/docs/Web/API/Window/rejectionhandled_event">rejectionhandled</a></code></dt> - <dd>{{jsxref("Promise")}} が拒絶されるたびに発行されます。拒絶を処理するハンドラーがあるかどうかは問いません。<br> + <dd>{{jsxref("Promise")}} が拒否されるたびに発行されます。拒否を処理するハンドラーがあるかどうかは問いません。<br> <code><a href="/ja/docs/Web/API/WindowEventHandlers/onrejectionhandled">onrejectionhandled</a></code> イベントハンドラープロパティからも利用できます。</dd> <dt><code><a href="/ja/docs/Web/API/Window/unhandledrejection_event">unhandledrejection</a></code></dt> - <dd>拒絶を処理するハンドラーのない {{jsxref("Promise")}} が拒絶されたときに発行されます。<br> + <dd>拒否を処理するハンドラーのない {{jsxref("Promise")}} が拒否されたときに発行されます。<br> <code><a href="/ja/docs/Web/API/WindowEventHandlers/onunhandledrejection">onunhandledrejection</a></code> イベントハンドラープロパティからも利用できます。</dd> </dl> diff --git a/files/ja/web/css/user-modify/index.html b/files/ja/web/css/user-modify/index.html index 1243f13c05..854abb890e 100644 --- a/files/ja/web/css/user-modify/index.html +++ b/files/ja/web/css/user-modify/index.html @@ -72,7 +72,7 @@ user-modify: unset; <h2 id="Specifications" name="Specifications">仕様書</h2> -<p>このプロパティは仕様書で定義されていません。類似のプロパティである <code>user-focus</code> が、 <a class="external" href="http://www.w3.org/TR/2000/WD-css3-userint-20000216">CSS3 UI 仕様書の早期の草稿</a>で提案されましたが、作業グループによって拒絶されました。</p> +<p>このプロパティは仕様書で定義されていません。類似のプロパティである <code>user-focus</code> が、 <a class="external" href="http://www.w3.org/TR/2000/WD-css3-userint-20000216">CSS3 UI 仕様書の早期の草稿</a>で提案されましたが、作業グループによって拒否されました。</p> <h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2> diff --git a/files/ja/web/events/index.html b/files/ja/web/events/index.html index 32155339ee..169f20382e 100644 --- a/files/ja/web/events/index.html +++ b/files/ja/web/events/index.html @@ -294,9 +294,9 @@ translation_of: Web/Events </tr> <tr> - <td>プロミスの拒絶</td> + <td>プロミスの拒否</td> <td> - <p>JavaScript のプロミスが拒絶されたときにグローバルスクリプトコンテキストに送信されるイベント。</p> + <p>JavaScript のプロミスが拒否されたときにグローバルスクリプトコンテキストに送信されるイベント。</p> </td> <td>イベントは <a href="/ja/docs/Web/API/Window#promise_rejection_events"><code>Window</code></a> で発行される。</td> </tr> diff --git a/files/ja/web/javascript/reference/global_objects/promise/catch/index.html b/files/ja/web/javascript/reference/global_objects/promise/catch/index.html index 4b2d016a74..277bda3b8a 100644 --- a/files/ja/web/javascript/reference/global_objects/promise/catch/index.html +++ b/files/ja/web/javascript/reference/global_objects/promise/catch/index.html @@ -11,7 +11,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Promise/catch --- <div>{{JSRef}}</div> -<p><code><strong>catch()</strong></code> メソッドは <code>Promise</code> を返しますが、拒絶された場合のみ扱います。 {{jsxref("Promise.then", "Promise.prototype.then(undefined, onRejected)")}} の呼び出しと同じ動作をします (実際、 <code>obj.catch(onRejected)</code> の呼び出しは内部的に <code>obj.then(undefined, onRejected)</code> を呼び出しています)。つまり、返値を <code>undefined</code> にフォールバックしたい場合でも、 <code>onRejected</code> 関数を提供する必要があります。 - 例えば、 <code>obj.catch(() => {})</code> のようにします。</p> +<p><code><strong>catch()</strong></code> メソッドは <code>Promise</code> を返しますが、拒否された場合のみ扱います。 {{jsxref("Promise.then", "Promise.prototype.then(undefined, onRejected)")}} の呼び出しと同じ動作をします (実際、 <code>obj.catch(onRejected)</code> の呼び出しは内部的に <code>obj.then(undefined, onRejected)</code> を呼び出しています)。つまり、返値を <code>undefined</code> にフォールバックしたい場合でも、 <code>onRejected</code> 関数を提供する必要があります。 - 例えば、 <code>obj.catch(() => {})</code> のようにします。</p> <div>{{EmbedInteractiveExample("pages/js/promise-catch.html")}}</div> @@ -33,9 +33,9 @@ p.catch(function(<var>reason</var>) { <dd><code>Promise</code> が失敗した時に呼び出される {{jsxref("Function")}} です。この関数は一つの引数を持ちます。 <dl> <dt><code><var>reason</var></code></dt> - <dd>拒絶された理由です。</dd> + <dd>拒否された理由です。</dd> </dl> - <code>catch()</code> で返される Promise は、 <code><var>onRejected</var></code> がエラーを発生させた場合、または返される Promise それ自体が拒絶された場合は、拒絶となります。それ以外の場合は、解決となります。</dd> + <code>catch()</code> で返される Promise は、 <code><var>onRejected</var></code> がエラーを発生させた場合、または返される Promise それ自体が拒否された場合は、拒否となります。それ以外の場合は、解決となります。</dd> </dl> <h3 id="Return_value" name="Return_value">返値</h3> diff --git a/files/ja/web/javascript/reference/global_objects/promise/then/index.html b/files/ja/web/javascript/reference/global_objects/promise/then/index.html index c75b748aad..f0ad7223d5 100644 --- a/files/ja/web/javascript/reference/global_objects/promise/then/index.html +++ b/files/ja/web/javascript/reference/global_objects/promise/then/index.html @@ -38,7 +38,7 @@ p.then(value => { <dt><code>onFulfilled</code> {{optional_inline}}</dt> <dd><code>Promise</code> が成功したときに呼び出される {{jsxref("Function")}} です。この関数は1つの引数、 <code>fulfillment value</code> を持ちます。これが関数ではない場合は、内部的に "Identity" 関数 (受け取った引数を返す関数) に置き換えられます。</dd> <dt><code>onRejected</code> {{optional_inline}}</dt> - <dd><code>Promise</code> が拒絶されたときに呼び出される {{jsxref("Function")}} です。この関数は1つの引数、 <code>rejection reason</code> を持ちます。これが関数ではない場合は、内部的に "Thrower" 関数 (引数として受け取ったエラーを投げる関数) に置き換えられます。</dd> + <dd><code>Promise</code> が拒否されたときに呼び出される {{jsxref("Function")}} です。この関数は1つの引数、 <code>rejection reason</code> を持ちます。これが関数ではない場合は、内部的に "Thrower" 関数 (引数として受け取ったエラーを投げる関数) に置き換えられます。</dd> </dl> <h3 id="Return_value" name="Return_value">返値</h3> @@ -48,10 +48,10 @@ p.then(value => { <ul> <li>値を返した場合、 <code>then</code> によって返される Promise は返値をその値として解決します。</li> <li>何も返さなかった場合、 <code>then</code> によって返される Promise は <code>undefined</code> の値で解決します。</li> - <li>エラーを投げた場合、 <code>then</code> によって返される Promise は、その値としてエラーを投げて拒絶されます。</li> + <li>エラーを投げた場合、 <code>then</code> によって返される Promise は、その値としてエラーを投げて拒否されます。</li> <li>すでに解決している Promise を返した場合、 <code>then</code> によって返される Promise は、その Promise の値をその値として返します。</li> - <li>すでに拒絶された Promise を返した場合、 <code>then</code> によって返される Promise は、その Promise の値をその値として拒絶されます。</li> - <li>他の <strong>pending</strong> 状態の Promise オブジェクトを返した場合、 <code>then</code> によって返された Promise の解決/拒絶は、ハンドラーによって返された Promise の解決/拒絶結果に依存します。また、 <code>then</code> によって返された Promise の解決値は、ハンドラーによって返された Promise の解決値と同じになります。</li> + <li>すでに拒否された Promise を返した場合、 <code>then</code> によって返される Promise は、その Promise の値をその値として拒否されます。</li> + <li>他の <strong>pending</strong> 状態の Promise オブジェクトを返した場合、 <code>then</code> によって返された Promise の解決/拒否は、ハンドラーによって返された Promise の解決/拒否結果に依存します。また、 <code>then</code> によって返された Promise の解決値は、ハンドラーによって返された Promise の解決値と同じになります。</li> </ul> <p>以下は、 <code>then</code> メソッドの非同期性を示す例です。</p> @@ -161,7 +161,7 @@ p2.then(function(value) { }); </pre> -<p><code>then</code> の引数として渡した関数が拒絶された Promise を返した場合や、例外 (エラー) が発生した場合は、拒絶された Promise を返します。</p> +<p><code>then</code> の引数として渡した関数が拒否された Promise を返した場合や、例外 (エラー) が発生した場合は、拒否された Promise を返します。</p> <pre class="brush: js notranslate">Promise.resolve() .then(() => { @@ -174,7 +174,7 @@ p2.then(function(value) { console.error('onRejected function called: ' + error.message); });</pre> -<p>その他の場合はすべて、<ruby>解決中<rp> (</rp><rt>resolving</rt><rp>) </rp></ruby>の Promise が返されます。次の例では、チェーン上の以前の Promise が拒絶されていても、最初の <code>then()</code> は解決中の Promise に含まれた <code>42</code> を返します。</p> +<p>その他の場合はすべて、<ruby>解決中<rp> (</rp><rt>resolving</rt><rp>) </rp></ruby>の Promise が返されます。次の例では、チェーン上の以前の Promise が拒否されていても、最初の <code>then()</code> は解決中の Promise に含まれた <code>42</code> を返します。</p> <pre class="brush: js notranslate">Promise.reject() .then(() => 99, () => 42) // onRejected returns 42 which is wrapped in a resolving Promise diff --git a/files/ja/web/javascript/reference/operators/index.html b/files/ja/web/javascript/reference/operators/index.html index ce93a79806..aa1fde203b 100644 --- a/files/ja/web/javascript/reference/operators/index.html +++ b/files/ja/web/javascript/reference/operators/index.html @@ -39,7 +39,7 @@ translation_of: Web/JavaScript/Reference/Operators <dt>{{JSxRef("Operators/async_function", "async function")}}</dt> <dd><code>async function</code> は非同期の関数式を定義します。</dd> <dt>{{JSxRef("Operators/await", "await")}}</dt> - <dd>非同期関数式の停止/再開と、プロミスの解決/拒絶を待ちます。</dd> + <dd>非同期関数式の停止/再開と、プロミスの解決/拒否を待ちます。</dd> <dt>{{JSxRef("Global_Objects/Array", "[]")}}</dt> <dd>配列初期化子またはリテラル構文です。</dd> <dt>{{JSxRef("Operators/Object_initializer", "{}")}}</dt> |