diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/worklet/addmodule | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/worklet/addmodule')
-rw-r--r-- | files/ja/web/api/worklet/addmodule/index.html | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/files/ja/web/api/worklet/addmodule/index.html b/files/ja/web/api/worklet/addmodule/index.html new file mode 100644 index 0000000000..401bbf988d --- /dev/null +++ b/files/ja/web/api/worklet/addmodule/index.html @@ -0,0 +1,63 @@ +--- +title: Worklet.addModule() +slug: Web/API/Worklet/addModule +translation_of: Web/API/Worklet/addModule +--- +<div>{{APIRef("Worklets")}}{{SeeCompatTable}}</div> + +<p><span class="seoSummary">{{domxref("Worklet")}} インタフェースで定義される <code><strong>addModule()</strong></code> メソッドを利用することで、指定したJavaScript ファイルで定義されるモジュールを <code>Worklet</code> にロードできます。</span></p> + +<h2 id="記法">記法</h2> + +<pre class="syntaxbox"><em>addPromise</em> = <em>worklet</em>.addModule(<em>moduleURL</em>); +<em>addPromise =</em> <em>worklet</em>.addModule(<em>moduleURL</em>, <em>options</em>); +</pre> + +<h3 id="パラメータ">パラメータ</h3> + +<dl> + <dt><code>moduleURL</code></dt> + <dd>追加するモジュールが定義されている JavaScript ファイルのURLを表す {{jsxref("String")}}。</dd> + <dt><code>options</code> {{optional_inline}}</dt> + <dd>次のオプションを指定するためのオブジェクト: + <ul> + <li><code>credentials</code>: {{domxref("RequestCredentials")}} に指定するモジュールのロードに必要な クレデンシャル情報 (例: cookies や HTTP 認証)。 <code>"omit"</code>、<code>"same-origin"</code>、 <code>"include"</code>のいずれかの値を指定します。デフォルト値は<code>"same-origin"</code>となっています。詳しくは {{domxref("Request.credentials")}} を参照してください。</li> + </ul> + </dd> +</dl> + +<h3 id="返り値">返り値</h3> + +<p>{{jsxref("Promise")}} オブジェクトが帰ります。このオブジェクトは、URLで指定されたモジュールがロードできた場合に受理状態になります。またコールバック関数は何の引数も与えられず呼び出されます。</p> + +<h2 id="使用例">使用例</h2> + +<pre class="brush:js, highlight:[3,4,5]">const audioCtx = new AudioContext(); +const audioWorklet = audioCtx.audioWorklet; +await audioWorklet.addModule('modules/bypassFilter.js', { + credentials: 'omit', +}); +</pre> + +<h2 id="仕様">仕様</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">仕様</th> + <th scope="col">状況</th> + <th scope="col">コメント</th> + </tr> + <tr> + <td>{{SpecName('Worklets', '#dom-worklet-addmodule', 'addModule()')}}</td> + <td>{{Spec2('Worklets')}}</td> + <td> </td> + </tr> + </tbody> +</table> + +<h2 id="ブラウザ互換性">ブラウザ互換性</h2> + +<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p> + +<p>{{Compat("api.Worklet.addModule")}}</p> |