TIL // fetch data with backend

Agnes Shin·2022년 2월 27일
0

in React

// fetch data with backend ```

const goToMain = () => {
fetch('http://10.58.5.235:8000/users/signin', {
method: 'POST',
body: JSON.stringify({
email: idValue,
password: pwValue,
}),
})
.then(response => response.json())
.then(result => console.log('결과: ', result));
};

profile
30기 신윤숙 / FE

0개의 댓글