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
- motion.div
- RN업데이트
- Swift
- CS
- react-native-image-picker
- axios
- react-native-permissions
- async
- react native
- debounce
- rn
- javascript
- react
- no-permission-handler-detected
- await
- react animation
- animation
- promise.all
- RN아키텍쳐
- Promise
- Throttle
- ios
- RN새로운아키텍쳐
- React-Native업데이트
- hydration mismatch
- named type
- 비동기
- Hash-table
- private-access-to-photos
- react-native
Archives
- Today
- Total
목록Patch (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