aboutsummaryrefslogtreecommitdiff
path: root/files/ja/learn/javascript/client-side_web_apis
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/learn/javascript/client-side_web_apis')
-rw-r--r--files/ja/learn/javascript/client-side_web_apis/third_party_apis/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/learn/javascript/client-side_web_apis/third_party_apis/index.html b/files/ja/learn/javascript/client-side_web_apis/third_party_apis/index.html
index b44a2b17bf..f1573f8af8 100644
--- a/files/ja/learn/javascript/client-side_web_apis/third_party_apis/index.html
+++ b/files/ja/learn/javascript/client-side_web_apis/third_party_apis/index.html
@@ -278,7 +278,7 @@ fetch(url).then(function(result) {
displayResults(json);
});</pre>
-<p>ここでは、<code>url</code> 変数を <code><a href="/ja/docs/Web/API/WindowOrWorkerGlobalScope/fetch">fetch()</a></code> に渡してリクエストを実行し、<code><a href="/ja/docs/Web/API/Body/json">json()</a></code> 関数を使用してレスポンスボディを JSON に変換し、結果の JSON を <code>displayResults()</code> 関数に渡して、データを UI に表示できるようにします。</p>
+<p>ここでは、<code>url</code> 変数を <code><a href="/ja/docs/Web/API/WindowOrWorkerGlobalScope/fetch">fetch()</a></code> に渡してリクエストを実行し、<code><a href="/ja/docs/Web/API/Response/json">json()</a></code> 関数を使用してレスポンスボディを JSON に変換し、結果の JSON を <code>displayResults()</code> 関数に渡して、データを UI に表示できるようにします。</p>
<h3 id="データを表示する">データを表示する</h3>