Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Throttle
- react native
- ios
- RN새로운아키텍쳐
- 비동기
- debounce
- no-permission-handler-detected
- Promise
- react
- await
- private-access-to-photos
- async
- javascript
- Swift
- CS
- animation
- hydration mismatch
- react-native-image-picker
- RN아키텍쳐
- promise.all
- rn
- named type
- motion.div
- Hash-table
- RN업데이트
- React-Native업데이트
- react animation
- react-native-permissions
- react-native
- axios
Archives
- Today
- Total
목록Post (1)
하루살이 개발일지

Axios 공식문서 : axios 란 node.js와 브라우저를 위한 Promise 기반 http 클라이언트 다시 말해 http를 이용해서 서버와 통신하기 위해 사용하는 패키지 yarn add axios json-server 설정 테스트용 db.json 설정 yarn json-server --watch db.json --port 3001 { "todos": [ { "id": "1", "title": "react" } ] } GET axios.get get은 서버의 데이터를 조회할 때 사용 // url에는 서버의 url이 들어가고, config에는 기타 여러가지 설정을 추가할 수 있습니다. // config는 axios 공식문서에서 확인하세요. axios.get(url[, config]) // GET 공식..
웹개발/React
2023. 7. 4. 10:54