react组件之间的参数传递

2018-06-24 00:07:25来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

1、父组件向子组件传递参数

class Child extends Component {
    componentDidMount(){
      let name = this.props.default;
      console,log(name);
    }
    render(){
      const { default} = this.props;
      return (
        <Input />
      )
}
}
import React, { Component } from 'react';
import Child from './Child';

class Parent extends Component {
    state = {
        name: 'Bob'
    }
    render() {
        return (
            <div>
                <Child default={this.state.name} />
            </div>
        )
    }
}

2、子组件向父组件传递参数

class Child extends Component {
    state={
      name:'Bob'
    }     componentDidMount(){
      this.props.toParent(this.state.name);
   }
    render(){       return (         <Input />       ) } }
import React, { Component } from 'react';
import Child from './Child';

class Parent extends Component {
   state = {
    name:''
} getChildInfo = (name)=>{
     this.setState({name:name});
   }
render() { return ( <div> <Child toParent={this.getChildInfo.bind(this)} /> </div> ) } }

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:论JavaScript的作用域

下一篇:简要谈谈javascript bind 方法