-
[form action] 검색어 쿼리로 전송하고 값 읽기Vue.js/Way Home 2022. 11. 2. 22:28
구현 화면 :
구현 방법 :
home 화면에서 input 태그를 form으로 감싼다.
<form action="./search" method="get"><input type="text" v-model="inputRest" /></form>input name을 설정한다.
<form action="./search" method="get"><input type="text" v-model="inputRest" name="query"/></form>url 파라미터 값을 받아온다.
const url = new URL(window.location.href);const urlParams = url.searchParams;let query = urlParams.get('query');원하는 곳에 배치한다.
<input type="text" :value='query'/>'Vue.js > Way Home' 카테고리의 다른 글
[11/9] 과제 (0) 2022.11.09 [input 박스 꾸미기] input 박스 안에 아이콘 넣기 (0) 2022.11.01 [자동완성검색(2)] 입력값으로 자동완성 기능 작성하기 filter. match, include, startsWith (0) 2022.10.19 [자동완성검색(1)] 입력한 값으로 시작하는 array값만 출력하기 (0) 2022.10.19 [emit] 자식 컴포넌트에서 부모 컴포넌트로 데이터 전달 (feat. script setup) (0) 2022.10.18