diff options
author | Hong Jinwoo <jinwoo17962@icloud.com> | 2021-10-15 15:56:03 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-15 15:56:03 +0900 |
commit | 316e3292df3b1a55e2eda64a4ba8c006a30686a2 (patch) | |
tree | 439519e15bac72bb1d42d81648bc114379f251ff | |
parent | e0c2cc11fd26fffb1678db38794a69a70ecf1e72 (diff) | |
download | translated-content-316e3292df3b1a55e2eda64a4ba8c006a30686a2.tar.gz translated-content-316e3292df3b1a55e2eda64a4ba8c006a30686a2.tar.bz2 translated-content-316e3292df3b1a55e2eda64a4ba8c006a30686a2.zip |
ko : added note for get method with body/payload issue (#2737)
* added note for get method with body/payload issue
* Update files/ko/web/http/methods/get/index.html
Co-authored-by: hochan Lee <hochan049@gmail.com>
* fixed payload to 페이로드
* Delete .env
Co-authored-by: hochan Lee <hochan049@gmail.com>
-rw-r--r-- | files/ko/web/http/methods/get/index.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/files/ko/web/http/methods/get/index.html b/files/ko/web/http/methods/get/index.html index 473050a4e8..8688d9650b 100644 --- a/files/ko/web/http/methods/get/index.html +++ b/files/ko/web/http/methods/get/index.html @@ -10,6 +10,11 @@ translation_of: Web/HTTP/Methods/GET <div>{{HTTPSidebar}}</div> <p><span class="seoSummary"><strong>HTTP <code>GET</code> 메서드</strong>는 특정한 리소스를 가져오도록 요청합니다.</span> <code>GET</code> 요청은 데이터를 가져올 때만 사용해야 합니다.</p> +<div class="notecard note"> + <strong>참고:</strong> + + <code>GET</code> 요청에 본문이나 페이로드가 담겨있으면 명세에는 금지되어있지 않지만, 의미가 정의되지 않아 기존에 존재하는 구현체에게 요청을 거부당할수 있습니다. 이러한 이유로 <code>GET</code> 요청에는 본문이나 페이로드를 담지 않는 것이 바람직합니다. +</div> <table class="properties"> <tbody> |