From 168ec9f65c5874a8fdc160973512ee35d5c3ca63 Mon Sep 17 00:00:00 2001 From: MyoungHo Kim <34343507+yahma25@users.noreply.github.com> Date: Tue, 30 Nov 2021 21:07:29 +0900 Subject: [Ko] fix cors link (#3007) * fix preflight_request link * fix simple requests link --- files/ko/web/http/cors/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'files/ko/web') diff --git a/files/ko/web/http/cors/index.html b/files/ko/web/http/cors/index.html index 698b49634b..753e1c6301 100644 --- a/files/ko/web/http/cors/index.html +++ b/files/ko/web/http/cors/index.html @@ -55,7 +55,7 @@ translation_of: Web/HTTP/CORS
일부요청은 CORS preflight 를 트리거하지 않습니다. {{SpecName ( 'Fetch')}} 명세(CORS를 정의한)는 이 용어를 사용하지 않지만, 이 기사에서는 "simple requests"라고 하겠습니다. "simple requests"는 다음 조건을 모두 충족하는 요청입니다:
+일부요청은 CORS preflight 를 트리거하지 않습니다. {{SpecName ( 'Fetch')}} 명세(CORS를 정의한)는 이 용어를 사용하지 않지만, 이 기사에서는 "simple requests"라고 하겠습니다. "simple requests"는 다음 조건을 모두 충족하는 요청입니다:
"preflighted" request는 위에서 논의한 “simple requests” 와는 달리, 먼저 {{HTTPMethod("OPTIONS")}} 메서드를 통해 다른 도메인의 리소스로 HTTP 요청을 보내 실제 요청이 전송하기에 안전한지 확인합니다. Cross-site 요청은 유저 데이터에 영향을 줄 수 있기 때문에 이와같이 미리 전송(preflighted)합니다.
+"preflighted" request는 위에서 논의한 “simple requests” 와는 달리, 먼저 {{HTTPMethod("OPTIONS")}} 메서드를 통해 다른 도메인의 리소스로 HTTP 요청을 보내 실제 요청이 전송하기에 안전한지 확인합니다. Cross-site 요청은 유저 데이터에 영향을 줄 수 있기 때문에 이와같이 미리 전송(preflighted)합니다.
다음은 preflighted 할 요청의 예제입니다.
-- cgit v1.2.3-54-g00ecf