日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) >

react 中子组件调用父组件的方法

發(fā)布時(shí)間:2025/5/22 40 豆豆
生活随笔 收集整理的這篇文章主要介紹了 react 中子组件调用父组件的方法 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

1.在父組件中定義方法,并綁定在子組件上

// 在子組件中調(diào)用父組件中的方法 import React,{Component} from 'react'; import Child from './child'class Parent extends Component{constructor(props){super(props);this.fun=this.fun.bind(this);}fun(){console.log('你調(diào)用了父組件的方法')}render(){return (<div><Child getFun={this.fun}></Child></div>)} }export default Parent;

  

2.在子組件中通過(guò)this.props來(lái)調(diào)用父組件中的方法、

// 在子組件中調(diào)用父組件中的方法 import React,{Component} from 'react';class Child extends Component{constructor(props){super(props);console.log(this.props,'0000000000000000')}render(){return(<div>child<button onClick={()=>{console.log('你點(diǎn)擊了按鈕');this.props.getFun()}}>點(diǎn)擊</button></div>)} }export default Child;

  ?

?

轉(zhuǎn)載于:https://www.cnblogs.com/VaeVae/p/10383798.html

總結(jié)

以上是生活随笔為你收集整理的react 中子组件调用父组件的方法的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。