-
location.search 파라미터로 받아온 한글 쿼리의 깨짐 현상error handling/Simple tips 2022. 11. 10. 23:17
파라미터로 받아온 검색어를 input value에 바로 설정할 경우 깨지는 현상이 발생했다.
이럴 때 필요한 함수는
decodeURIComponent(): URI(Uniform Resource Identifier)로 변환된 문자를 정상적인 문자열로 디코딩하는 함수
const queryString = decodeURI(location.search.slice(3));
이렇게 설정함으로서 해결!
'error handling > Simple tips' 카테고리의 다른 글
Git remote에서 특정 파일의 내용만 가져오기 (0) 2023.11.09 firestore 경로 설정 (0) 2022.09.07 firebase 에 이미지 저장하기 (0) 2022.08.02 office hour에서 나온 질문 정리 (testcase / third-party API) (0) 2020.07.03 [github] commit 기록을 터미널에서 보는 방법 (0) 2020.07.02