[React Fundamentals] Component lifecycle-mounting Basics

Source: Internet
Author: User

React components has a lifecycle, and you is able to access specific phases of that lifecycle. This lesson would introduce mounting and unmounting of your React components.

Import React from 'react'; import Reactdom from 'React-dom'; exportdefault classApp extends React.component {constructor () {super ();  This. State ={val:0}} update () { This. SetState ({val: This. State.val +1})} componentwillmount () {Console.log ("Component would Mount"); } render () {Console.log ("Rendering"); return (            <div> <button onclick={ This. Update.bind ( This)}>{ This.state.val}</button> </div>)} componentdidmount () {Console.log ("Component did Mount"); }}

"Componentwillmount" happen before rendering, "state" and "props" were ready, but DOM was not rendered yet.

"Componentdidmount" happen after component rendered to the DOM, can access Dom Node.

[React Fundamentals] Component lifecycle-mounting Basics

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.