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/console_api | |
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/console_api')
-rw-r--r-- | files/ja/web/api/console_api/index.html | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/files/ja/web/api/console_api/index.html b/files/ja/web/api/console_api/index.html new file mode 100644 index 0000000000..4050667e19 --- /dev/null +++ b/files/ja/web/api/console_api/index.html @@ -0,0 +1,77 @@ +--- +title: Console API +slug: Web/API/Console_API +tags: + - API + - Debugging + - Overview + - console + - dump + - log + - output + - test +translation_of: Web/API/Console_API +--- +<div>{{DefaultAPISidebar("Console API")}}</div> + +<p><span class="seoSummary">Console API(コンソール API)には、開発者がデバッグ作業(メッセージ、コード内の設定点での変数の値、操作の完了にかかった時間などの記録)を実行できるようにする機能が用意されています。</span></p> + +<h2 id="Concepts_and_usage" name="Concepts_and_usage">概念と使用方法</h2> + +<p>Console API は、一貫性のない方法ではありますが、さまざまなブラウザーで実装されている、大部分が独自の API として始まりました。 <a href="https://console.spec.whatwg.org/">Console API 仕様</a>は、一貫した振る舞いを定義するために作成されました。 すべての最新のブラウザーは、最終的にこの振る舞いの実装に落ち着きましたが、一部の実装には独自の機能がまだ追加されています。 これらについては、次をご覧ください。</p> + +<ul> + <li><a href="https://developers.google.com/chrome-developer-tools/docs/console-api">Google Chrome の開発ツールの実装</a></li> + <li><a href="https://developer.apple.com/library/safari/documentation/AppleApplications/Conceptual/Safari_Developer_Guide/Console/Console.html">Safari の開発ツールの実装</a></li> +</ul> + +<p>使用方法は非常に簡単です — {{domxref("console")}} オブジェクト — {{domxref("window.console")}} またはワーカーの {{domxref("WorkerGlobalScope.console")}} を介して利用できます。 <code>console</code> のみを使用してアクセスできます — 基本的なデバッグ作業を実行するために呼び出すことができる多くのメソッドが含まれています。 通常は、ブラウザーの<a href="/ja/docs/Tools/Web_Console">ウェブコンソール</a>にさまざまな値を記録することに焦点を当てています。</p> + +<p>最も一般的に使用されるメソッドは {{domxref("console.log")}} で、特定の変数に含まれる現在の値を記録するために使用します。</p> + +<h2 id="Interfaces" name="Interfaces">インターフェイス</h2> + +<dl> + <dt>{{domxref("console")}}</dt> + <dd>記録、スタックトレース、タイマー、カウンターなどの基本的なデバッグ機能を提供します。</dd> +</dl> + +<h2 id="Examples" name="Examples">例</h2> + +<pre class="brush: js">let myString = 'Hello world'; + +// "Hello world" をコンソールに出力 +console.log(myString)</pre> + +<p>その他の例については、<a href="/ja/docs/Web/API/Console#Usage"><code>console</code> のリファレンスページ</a>を参照してください。</p> + +<h2 id="Specifications" name="Specifications">仕様</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">仕様</th> + <th scope="col">状態</th> + <th scope="col">コメント</th> + </tr> + <tr> + <td>{{SpecName('Console API')}}</td> + <td>{{Spec2('Console API')}}</td> + <td>初期定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + + + +<p>{{Compat("api.Console")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li><a href="/ja/docs/Tools" title="Tools">開発ツール</a></li> + <li><a href="/ja/docs/Tools/Web_Console" title="Web Console">ウェブコンソール</a> — Firefox のウェブコンソールが Console API の呼び出しを処理する方法</li> + <li><a href="/ja/docs/Tools/Remote_Debugging">リモートデバッグ</a> — デバッグ対象がモバイルデバイスである場合のコンソール出力の表示方法</li> +</ul> |