42Seoul-Organization / WORI42

[제3회 정부혁신제안 끝장개발대회 메이커톤] 우리42
https://hackertonopendata.herokuapp.com/
MIT License
4 stars 0 forks source link

[DecodeURI] #31

Closed hochan222 closed 4 years ago

hochan222 commented 4 years ago

decodeURIComponent vs decodeURI

hochan222 commented 4 years ago

https://www.it-swarm-ko.tech/ko/javascript/decodeuricomponent%ec%99%80-decodeuri%ec%9d%98-%ec%b0%a8%ec%9d%b4%ec%a0%90%ec%9d%80-%eb%ac%b4%ec%97%87%ec%9e%85%eb%8b%88%ea%b9%8c/957905077/

hochan222 commented 4 years ago

이 두 가지의 차이점을 설명하기 위해 encodeURI과 encodeURIComponent의 차이점을 설명하겠습니다.

주요 차이점은 다음과 같습니다.

encodeURI 함수는 전체 URI에서 사용하기위한 것입니다. encodeURIComponent 함수는 구분 기호 (; /? : @ & = + $, #) 사이에있는 부분 인 .. well .. URI 구성 요소에서 사용하도록 고안되었습니다. 따라서 encodeURIComponent에서 이러한 구분 기호는 특수 문자가 아닌 텍스트로 간주되기 때문에 인코딩됩니다.

디코드 함수의 차이점으로 돌아가서, 각 함수는 특수 문자의 의미와 처리를 처리하여 해당하는 인코딩 대응 물에 의해 생성 된 문자열을 디코딩합니다.