componentWillMount和componentDidMount的區別

一、componentWillMount  將要裝載,在render以前調用;react

      componentDidMount,(裝載完成),在render以後調用瀏覽器

二、componentWillMount  每個組件render以前當即調用;服務器

      componentDidMount  render以後並不會當即調用,而是全部的子組件都render完以後才能夠調用component

三、componentWillMount  能夠在服務端被調用,也能夠在瀏覽器端被調用;服務器端

      componentDidMount  只能在瀏覽器端被調用,在服務器端使用react的時候不會被調用服務端

相關文章
相關標籤/搜索