<TIL - 0037> fetch

개발일지·2023년 5월 12일
0

til

목록 보기
37/43


fetch를 이용해서 html 만들기

async function login(){
            const id = document.getElementById('id').value;
            const password = document.getElementById('password').value;
            const data = {id, password};
            const res = await fetch('/login', {
                method: 'POST',
                headers: {
                    'Content-Type': 'application/json'
                },
                body: JSON.stringify(data),
            });
            const result = await res.json();
            if(result.success){
                localStorage.setItem('token', result.token);
                location.href = '/';
            }else{
                alert(result.msg);
            }
        }


profile
아닐지

0개의 댓글