CHAPTER 2 043 문자열 URI 이스케이프 처리하기
5349 단어 JavaScriptJavaScript
encodeURI(문자열) : 문자열을 인코딩
encodeURIComponent(문자열): 문자열을 인코딩
URI 에 한글이 포함되면 사용 x => 인코딩 필요
encodeURI()와 encodeURIComponent() 차이?
: encodeURIComponent()가 이스케이프 처리를 실행하는 문자의 종류가 더 많음.
텍스트와 해시태그를 입력하여 트위터에 게시하는 예제
HTML
<body>
<h1>트윗하고 싶은 내용을 입력하세요.</h1>
<textarea id="tweetTextArea"></textarea>
<button id="tweetButton">트윗하기</button>
</body>
Javascript
// 인코딩 하면 한글만 이상하게 바뀜.
// const a = encodeURI('http://aaa.com/고양이룰루랄ㄹ라옹이봄이.html');
// console.log(a);
document.querySelector('#tweetButton').addEventListener('click', () => {
// 트윗 내용 가져오기
let tweetText = document.querySelector('#tweetTextArea').value;
// #JavaScript 와 빈칸을 트윗 내용에 추가.
// value 에 해시태그 값 추가.
tweetText += ' #멋사파이팅';
// 입력한 트윗 내용을 인코딩
const encodedText = encodeURIComponent(tweetText) ;
// 인코딩한 트윗 내용을 포함하여 링크 작성
const tweetURL =
`https://twitter.com/intent/tweet?text=${encodedText}`;
// 트위터 열기
window.open(tweetURL);
});
결과
Chapter 2 END
Author And Source
이 문제에 관하여(CHAPTER 2 043 문자열 URI 이스케이프 처리하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@qhahd78/CHAPTER-2-043-문자열-URI-이스케이프-처리하기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)