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 |
Tags
- block scope
- .kt
- RecyclerView
- Eclipse
- android
- RelativeLayout
- javascript
- LinearLayout
- vim
- ReactDOM
- Retrofit2
- react
- Kotlin
- Anko SQLite
- cardview
- component
- view
- Git
- permission
- 안드로이드
- Anro Coroutines
- ViewGroup
- layout
- intent
- linux
- java
- http
- props
- ConstraintLayout
- function scope
Archives
- Today
- Total
목록render (1)
이것저것 다 개발
[React] Component LifeCycle
React Component의 LifeCycle입니다. Component 생성부터 종료까지 호출되는 순서대로 나열해 두었습니다. 컴포넌트 초기 생성 constructor()constructor는 생성자 라고 불리며 컴포넌트가 생성되었을때 호출됩니다. componentWillMount()render() 전에 호출됩니다. render()view를 만들어주는 함수입니다. componentDidMount()render() 후에 호출됩니다. 컴포넌트 업데이트 componentWillReceiveProps(nextProps)Component가 새로운 Props를 받게 됐을때 호출됩니다. shouldComponentUpdate(nextProps, nextState)Component의 Props나 State변경시 호출..
React
2018. 7. 13. 21:00