From f680c7e72fd17f3023770bb2ac44877870172c4c Mon Sep 17 00:00:00 2001 From: hochan Lee Date: Sun, 16 May 2021 22:03:01 +0900 Subject: fix link error (#776) --- files/ko/web/api/fetch_api/using_fetch/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/files/ko/web/api/fetch_api/using_fetch/index.html b/files/ko/web/api/fetch_api/using_fetch/index.html index b28a982a16..ff6c5fe279 100644 --- a/files/ko/web/api/fetch_api/using_fetch/index.html +++ b/files/ko/web/api/fetch_api/using_fetch/index.html @@ -18,13 +18,13 @@ original_slug: Web/API/Fetch_API/Fetch의_사용법

기본적인 fetch는 누구라도 알기쉽고 간단하게 작성할 수 있습니다. 아래의 코드를 봐주시기 바랍니다.

-
fetch('http://example.com/movies.json')
+
fetch('http://example.com/movies.json')
   .then(function(response) {
     return response.json();
   })
   .then(function(myJson) {
     console.log(JSON.stringify(myJson));
-  });
+ });

네트워크에서 JSON 파일을 가져 와서 콘솔에 인쇄합니다. 간단한 fetch() 사용 흐름은 인수 한개(가져올 자원의 경로)를 가져오고 응답을 포함하는 약속 ({{domxref ( "Response")}} 개체)을 반환하는 것입니다.

@@ -411,7 +411,7 @@ fetch("/login", {