码迷,mamicode.com
首页 > 其他好文 > 详细

React componentWillUpdate

时间:2017-08-09 13:04:06      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:example   one   ons   hand   on()   func   create   log   element   

<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script src="js/react.js"></script>
<script src="js/react-dom.js"></script>
<script src="js/browser.min.js"></script>
</head>
<body>
<div id="example"></div>

<script type="text/babel">

var MySwitch = React.createClass({
componentWillUpdate:function(props,state){
console.log(state);
},
getInitialState:function(){
return {switch:false}
},
handleClick:function(){
this.setState({switch:!this.state.switch});
},
render:function(){
return <button onClick={this.handleClick}>
{"当前状态为:"+this.state.switch}
</button>
}
})
ReactDOM.render(
<MySwitch/>,
document.getElementById(‘example‘)
)

</script>

</body>
</html>

React componentWillUpdate

标签:example   one   ons   hand   on()   func   create   log   element   

原文地址:http://www.cnblogs.com/dianzan/p/7324188.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!