diff options
author | hochan Lee <hochan049@gmail.com> | 2021-05-16 22:03:01 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-16 22:03:01 +0900 |
commit | f680c7e72fd17f3023770bb2ac44877870172c4c (patch) | |
tree | a32d20134a431c162a9638af9146d116af6f2f1f /files | |
parent | 2a79cd119b68d18471f70af66f6567e39a8fe0f8 (diff) | |
download | translated-content-f680c7e72fd17f3023770bb2ac44877870172c4c.tar.gz translated-content-f680c7e72fd17f3023770bb2ac44877870172c4c.tar.bz2 translated-content-f680c7e72fd17f3023770bb2ac44877870172c4c.zip |
fix link error (#776)
Diffstat (limited to 'files')
-rw-r--r-- | files/ko/web/api/fetch_api/using_fetch/index.html | 6 |
1 files 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의_사용법 <p>기본적인 fetch는 누구라도 알기쉽고 간단하게 작성할 수 있습니다. 아래의 코드를 봐주시기 바랍니다.</p> -<pre class="brush: js notranslate"><code>fetch('http://example.com/movies.json') +<pre class="brush: js notranslate">fetch('http://example.com/movies.json') .then(function(response) { return response.json(); }) .then(function(myJson) { console.log(JSON.stringify(myJson)); - });</code></pre> + });</pre> <p>네트워크에서 JSON 파일을 가져 와서 콘솔에 인쇄합니다. 간단한 <code>fetch()</code> 사용 흐름은 인수 한개(가져올 자원의 경로)를 가져오고 응답을 포함하는 약속 ({{domxref ( "Response")}} 개체)을 반환하는 것입니다.</p> @@ -411,7 +411,7 @@ fetch("/login", { <ul> <li><a href="/ko/docs/Web/API/ServiceWorker_API">ServiceWorker API</a></li> - <li><a href="/ko/docs/Web/HTTP/Access_control_CORS">HTTP 액세스 제어 (CORS)</a></li> + <li><a href="/ko/docs/Web/HTTP/CORS">HTTP 액세스 제어 (CORS)</a></li> <li><a href="/ko/docs/Web/HTTP">HTTP</a></li> <li><a href="https://github.com/github/fetch">Fetch polyfill</a></li> <li><a href="https://github.com/mdn/fetch-examples/">Fetch examples on Github</a></li> |