Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- ESLint
- NPM
- this
- git pair
- 객체참조 #객체
- jest
- url #querystring
- OOP
- #cloudfront #s3 #html 확장자 없애기
- 클로저
- lightsail nodejs apache
- TypeScript
- 기후변화
Archives
- Today
- Total
Hello World...
fetch 사용시 credentilas 본문
credentials 설정을 해주지 않으면, fetch 가 제대로 안 되는 경우가 많다.
Access-Control-Allow-Credentials
Access-Control-Allow-Credentials
응답헤더 Access-Control-Allow-Credentials 는 요청의 자격증명 모드(Request.credentials)가 "include" 일때, 브라우저들이 응답을 프로트엔드 자바스트립트 코드에 노출할지에 대해 알려줍니다.
developer.mozilla.org
다음과 같이 credentials 를 해주어야 한다
예1
postLogin(body) {
fetch('http://localhost:5001/users/login', {
method: 'POST',
body: JSON.stringify(body),
headers: { 'Content-Type': 'application/json' },
credentials: 'include'
})
.then(res => res.json())
.then(json => {
if (json.loginCheck === 'success') {
this.props.onChangeLoginTrue();
this.props.history.push('/main');
}
if (json.loginCheck === 'failed') {
console.log('login failed');
}
});
}
예2
fetchUserData() {
fetch('http://localhost:5001/users/info', {
credentials: 'include'
})
.then(res => res.json())
.then(json => {
if (json.id) {
this.setState({ email: json.email, name: json.name });
}
});
}
'react.js' 카테고리의 다른 글
[두잇!]리액트 프로그래밍 정석 131p 3분 코딩 에러 해결 (0) | 2020.04.21 |
---|---|
react proxy 리액트 프록시 cors 문제 해결 (0) | 2020.04.15 |
html input tag type "datetime-local" 날짜와 시간 (0) | 2020.02.01 |
recast.ly 에서 ref 활용 (0) | 2020.01.28 |
recast.ly 구조 (0) | 2020.01.28 |
Comments