react 生命周期钩子 jsX

react生命周期钩子

componentWillMount:组件首次渲染之前调用
componentDidMount:在首次真实的DOM渲染后调用(仅此一次)或请求外部接口数据时使用
componentWillUnmount:组件卸载后

JSX

      
{ tagName:"div", attrs:[className:"wrapper"] childen:[ { tagName:"button", attrs:['onClick':fn] } ] } react添加样式: 1.直接引入css [推荐] 2.js方式

你可能感兴趣的:(react 生命周期钩子 jsX)