Skip to content

Commit

Permalink
API の用語定義を削除
Browse files Browse the repository at this point in the history
  • Loading branch information
chelproc committed Sep 20, 2024
1 parent ba62153 commit 884d35e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
2 changes: 1 addition & 1 deletion docs/4-advanced/01-fetch-api/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import chatAppVideo from "./chat-app.mp4";

これまで、ブラウザが<Term>サーバー</Term>に対して<Term>リクエスト</Term>を送信するのは、リンクがクリックされたときや、フォームが送信されたときなど、ページの再読み込みが起こる場合のみでした。

ブラウザ上で動くJavaScriptから利用できる**Fetch <Term>API</Term>**を用いると、任意のタイミングで<Term>リクエスト</Term>が発行できるようになります。
ブラウザ上で動くJavaScriptから利用できる**Fetch API**を用いると、任意のタイミングで<Term>リクエスト</Term>が発行できるようになります。

{/* prettier-ignore */}
<Term>サーバー</Term>と<Term>クライアント</Term>、どちらで動くJavaScriptなのかに注意しながら、次のプログラムを実行してみましょう。
Expand Down
6 changes: 0 additions & 6 deletions src/components/Term/definitions.js
Original file line number Diff line number Diff line change
Expand Up @@ -394,12 +394,6 @@ export default {
"処理を実行する際、その完了を待たずに呼び出し元の処理が続行されるような処理。JavaScriptでは、asyncキーワードをつけた関数は非同期処理を行うための関数となり、内部ではawaitキーワードにより他の非同期処理を呼び出してその結果を待機できるようになる。",
referencePage: "/docs/web-servers/database/",
},
api: {
name: "API",
definition:
"あるコンピュータープログラムの機能や管理するデータなどを、外部の他のプログラムから呼び出して利用するための手順やデータ形式などを定めた規約。アプリケーションプログラミングインターフェース (Application Programming Interface) の略。",
referencePage: "/docs/advanced/fetch-api/",
},
thread: {
name: "スレッド",
definition:
Expand Down
1 change: 0 additions & 1 deletion src/components/Term/type-map.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ const typeMap = new Map([
["npxコマンド", "npxCommand"],
["非同期処理", "asynchronousProcess"],
["非同期関数", "asynchronousProcess"],
["API", "api"],
["スレッド", "thread"], // not found
["トランスパイル", "transpile"],
["トランスパイラ", "transpile"],
Expand Down

0 comments on commit 884d35e

Please sign in to comment.