ES6下子組件調用父組件的方法(推薦),es6組件調用方法

來源:互聯網
上載者:User

ES6下子組件調用父組件的方法(推薦),es6組件調用方法

出於某些目的,最近又開始研究起了RN,看著教程一步步的學習,在最近卻是碰到了一個問題,那就是父子組件的方法調用的問題。

這個問題我百度了很久,JS的ES6文法下,用class建立組件,子組件調用父組件方法模擬器不斷報錯。

因為我看的視頻是基於es5的文法來實現的代碼,所以文法有些不同。

es5的文法下,方法的this都是RN已經幫我們處理好了的,所以按照視頻中的樣本是可以達成效果的,但是es6貌似是要自己寫的。。

具體的寫法就是在constructor中添加 this.xxxxx = this.xxxxx.bind(this);

或者在子組件綁定的時候就寫this.xxxxx.bind(this) .

這裡就不多講了,下面上代碼,以供需要的人蔘考。

export default class TestPrj extends Component {    constructor(props){      super(props);      this.timesReset = this.timesReset.bind(this);      this.state = {timex:2};    }    timesReset(){      this.setState({        timex:0      });    }    render() {      return(        <View style={styles.container}>          <Son ref="Son1" timex={this.state.timex} timesReset={this.timesReset}/>          //或者<Son ref="Son1" timex={this.state.timex} timesReset={this.timesReset.bind(this)}/>        </View>      );    }  } class Son extends Component{    constructor(props){    super(props);    this.state = {times:this.props.timex};  }  componentWillReceiveProps(props){    console.log(this.props);    this.setState({      times:props.timex    })  }  timesReset(){    this.props.timesReset();  }  render(){    return(    <View style={styles.container}>      <Text style={styles.instructions}>      兒子:雖然你揍了我 {this.state.times} 次,但是我 永 不 屈 服!!      </Text>      <TouchableHighlight style={styles.btn} underlayColor={'pink'} onPress={this.timesReset.bind(this)}>        <Text style={{textAlign:'center'}}>爹,再給你兒子一次機會!!</Text>      </TouchableHighlight>    </View>    );  }}

以上這篇ES6下子組件調用父組件的方法(推薦)就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支援幫客之家。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.