Axios
instance 설정가능
// baseURL, headers, timeout 여러곳에서 반복 작성하지 않아도 됨
버전으로 다운로드
yarn add axios@0.18.1
axios.create로 변수에 공통된 주소 , 주소의 속성들인
key, language 설정
api.get(api 불러올 쿼리)로 값을 가져옴
ex)
1
2
3
4
5
6
7
|
const api = axios.create({
baseURL: "https://api.themoviedb.org/3/",
params: {
api_key: "10923b261ba94d897ac6b81148314a3f",
language: "en-US"
}
});
|
절대경로 /
baseURL 덮어쓴다
상대경로
'React' 카테고리의 다른 글
Class constructor에서 super()의 사용 (0) | 2019.11.25 |
---|---|
Container Presenter Pattern (0) | 2019.11.24 |
React에서 CSS 적용하기 (0) | 2019.11.21 |
Router (0) | 2019.11.21 |
component, Component Life Cycle, state , setState (0) | 2019.11.12 |