웹에서 데이터 전송시 특정 문자들은 특수기능으로 사용되는데, 해당특수문자들은 그대로 전송하면 시스템이 인식할 수 없게 됩니다. 그래서 이렇게 치환해줍니다.
const url = 'http://www.kakao.com';
const url2 = '?id=한글';
console.log(url+url2); //"http://www.kakao.com?id=한글"
console.log(url+encodeURIComponent(url2)); // "http://www.kakao.com%3Fid%3D%ED%95%9C%EA%B8%80"
728x90
'프로그램 강좌' 카테고리의 다른 글
[vsCode]윈도우 powershell => git bash 로 바꾸기 (0) | 2021.06.28 |
---|---|
[윈도우]글꼴(폰트) 바로가기 설치 방법 (0) | 2021.06.25 |
[html]article, section, div 대체 차이가 뭐야? (0) | 2021.06.14 |
[Git]깃랩 permission denied 이유는 SSH Keys (2) | 2021.06.10 |
[javascript]정말로 지울까요? window.confirm (0) | 2021.06.04 |