-
hook查看全部
-
update查看全部
-
mounted查看全部
-
component lifecycle查看全部
-
this,总的原则是,this指的是调用函数的对象查看全部
-
react不是完整MVC,MVVM框架,只负责view层查看全部
-
.0.0.查看全部
-
就是小的组件组成一个大的组件,高度可重用的查看全部
-
react适用于 view 层 react 应用场景 1,复杂场景下的高性能 2,重用组件库,组件组合 3,'懒'....查看全部
-
mouting updating unmounting 生命周期调用的function查看全部
-
var Hello = React.createClass({ getInitialState: function(){ alert('init'); return { opacity: 1.0, fontSize: '12px', }; }, render: function() { return <div style={this.state}>Hello {this.props.name}</div>; }, componentWillMount: function(){ alert("will"); }, componentDidMount: function(){ alert('did'); var _self = this; window.setTimeout(function(){ _self.setState({ opacity: 0.5, fontSize: '44px', }) }, 1000 ) }, }); ReactDOM.render( <Hello name="World" />, document.getElementById('container') );查看全部
-
react 种class shoud change to className style should change to style: {{color: 'red'}}查看全部
-
语法糖对功能没有影像 但更方便程序员使用查看全部
-
jsx查看全部
-
生命周期查看全部
举报
0/150
提交
取消