标签:
this.props只能获取数据,不能修改,不能进行设置操作。
this.props和this.state的区别: this.state:每个组件都有state属性(独立的属性),state有读取和修改的功能。 能够做到虚拟DOM到真实DOM的修改,不能进行父组件向子组件的船值。 this.props:可以由父组件传值给子组件。
1 getInitialState:function(){ 2 return { 3 cnt:0 4 } 5 }
1 count:function(){ 2 this.setState({ 3 cnt: this.state.cnt+1 4 }) 5 }, 6 7 <label>{this.state.cnt}</label>
react 中的input输入框不能修改
1 defaultValue = {this.state.cnt} //默认value 2 onChange={} //只要改变输入框中的值,就会触发事件
通过属性获取
对要获取的input框添加 ref=""属性 (this.refs.pwdInput.refs.input.value)
函数方法
对要获取的input框添加
1 ref= {function(ele){ //父组件 2 this._pwd = ele; 3 }.bind(this)} 4 5 ref= {function(ele){ //子组件 6 this._input = ele; 7 }.bind(this)} 8 9 //使用的时候 10 11 this._pwd._input
也可用箭头函数 ref = {(ele)=>this._input = ele} //子组件 ref = {(ele)=>this._pwd = ele} //父组件
另一种Ajax提交方式:
利用promise 异步模型。nodejs内部也是使用promise模型实现的单线程异步原理。
fetch()方法,采用promise实现异步提交,没有用到XHR对象。、
三个方法
第一个和第三个在组件的生命周期中只执行一次。
标签:
原文地址:http://www.cnblogs.com/webbest/p/5861291.html