Lancez-Vous. C'est gratuit
ou s'inscrire avec votre adresse e-mail
ReactJS par Mind Map: ReactJS

1. Component

1.1. ClassComponent

1.1.1. Mounting

1.1.1.1. componentWillMount()

1.1.1.2. Render()

1.1.1.3. componentDidMount()

1.1.2. Updating

1.1.2.1. Props Change ()

1.1.2.1.1. componentWillReceiveProps()

1.1.2.1.2. shouldComponentUpdate()

1.1.2.1.3. componentWillUpdate()

1.1.2.1.4. render()

1.1.2.1.5. componentDidUpdate

1.1.2.2. State Change

1.1.2.2.1. shouldComponentUpdate()

1.1.2.2.2. componentWillUpdate()

1.1.2.2.3. render()

1.1.2.2.4. componentDidUpdate()

1.1.3. Unmouting

1.1.3.1. componentWillUnmount()

1.1.4. Initalization

1.1.4.1. SetProps()

1.1.4.2. setState()

1.2. FunctionalComponent

2. JSX

2.1. JavaScript extension

2.2. Write HTML in JS file

2.2.1. Using tool HTML to JSX Convert

2.3. supported tags/attributes

2.4. Comment

3. ReactDOM

3.1. render( )

3.1.1. JSX

3.1.2. DOM

4. Props

4.1. propTypes

5. State