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 |
Tags
- 코루틴
- 저장
- 명시적형변환
- 불러오기
- 키보드
- 유니티
- 구독
- useEffect
- 클래스
- OnMouseClick
- 마우스
- GetKey
- 리액트네이티브
- Subscribe
- C#
- oveflow
- 암시적형변환
- 팁
- 훅
- 중단
- File
- >.NET
- 오버플로우
- Unity
- Fetch
- stopcoroutine
- JSON
- 리액트
- Explicit Conversion
- implicit Conversion
Archives
- Today
- Total
목록FE (2)
Log to grow

1. class에서의 생명 주기 ref : projects.wojtekmaj.pl/react-lifecycle-methods-diagram/ * component가 mount 시작 되면 1. constructor가 가장 먼저 실행 2. getDerivedStateFromProps에서 props와 state를 비교 3. render component 4. update DOM 5. componentDidMount가 실행 * component가 update 될 때 (new props or setState) 1. getDerivedStateFromProps에서 props와 state 비교 2. shouldComponentUpdate 실행 - new props, state를 확인하고 rerender 할 것인지 결..
FE/React
2020. 10. 31. 16:04
[react-native] 안드로이드에서 post 요청이 Network Error를 뱉을 때
Axios의 Network error --> request는 있었지만 response를 받지 못했을 때 발생 에러 내용 : CLEARTEXT communication not permitted by network security 안드로이드 9이상부터는 http를 허용하지 않는 것이 default이기 때문! 따라서, Manifest에서 따로 설정해두어야 한다. 자세한 방법 : stackoverflow.com/questions/45940861/android-8-cleartext-http-traffic-not-permitted
FE/React
2020. 9. 23. 03:44