久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長(zhǎng)資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      React父組件怎么調(diào)用子組件的方法

      調(diào)用方法:1、類(lèi)組件中的調(diào)用可以利用React.createRef()、ref的函數(shù)式聲明或props自定義onRef屬性來(lái)實(shí)現(xiàn);2、函數(shù)組件、Hook組件中的調(diào)用可以利用useImperativeHandle或forwardRef拋出子組件ref來(lái)實(shí)現(xiàn)。

      React父組件怎么調(diào)用子組件的方法

      本教程操作環(huán)境:Windows7系統(tǒng)、react18版、Dell G3電腦。

      在React中,我們經(jīng)常在子組件中調(diào)用父組件的方法,一般用props回調(diào)即可。但是有時(shí)候也需要在父組件中調(diào)用子組件的方法,通過(guò)這種方法實(shí)現(xiàn)高內(nèi)聚。有多種方法,請(qǐng)按需服用。

      類(lèi)組件中


      1、React.createRef()

      • 優(yōu)點(diǎn):通俗易懂,用ref指向。

      • 缺點(diǎn):使用了HOC的子組件不可用,無(wú)法指向真是子組件

        比如一些常用的寫(xiě)法,mobx的@observer包裹的子組件就不適用此方法。

      import React, { Component } from 'react';  class Sub extends Component {   callback() {     console.log('執(zhí)行回調(diào)');   }   render() {     return <div>子組件</div>;   } }  class Super extends Component {   constructor(props) {     super(props);     this.sub = React.createRef();   }   handleOnClick() {     this.sub.callback();   }   render() {     return (       <div>         <Sub ref={this.sub}></Sub>       </div>     );   } }
      登錄后復(fù)制

      2、ref的函數(shù)式聲明

      • 優(yōu)點(diǎn):ref寫(xiě)法簡(jiǎn)潔
      • 缺點(diǎn):使用了HOC的子組件不可用,無(wú)法指向真是子組件(同上)

      使用方法和上述的一樣,就是定義ref的方式不同。

      ...  <Sub ref={ref => this.sub = ref}></Sub>  ...
      登錄后復(fù)制

      3、使用props自定義onRef屬性

      • 優(yōu)點(diǎn):假如子組件是嵌套了HOC,也可以指向真實(shí)子組件。
      • 缺點(diǎn):需要自定義props屬性

      import React, { Component } from 'react'; import { observer } from 'mobx-react'  @observer class Sub extends Component { 	componentDidMount(){     // 將子組件指向父組件的變量 		this.props.onRef && this.props.onRef(this); 	} 	callback(){ 		console.log("執(zhí)行我") 	} 	render(){ 		return (<div>子組件</div>); 	} }  class Super extends Component { 	handleOnClick(){        // 可以調(diào)用子組件方法 		this.Sub.callback(); 	} 	render(){ 		return (           <div> 			<div onClick={this.handleOnClick}>click</div> 			<Sub onRef={ node => this.Sub = node }></Sub>	 	   	  </div>) 	} }
      登錄后復(fù)制

      函數(shù)組件、Hook組件


      1、useImperativeHandle

      • 優(yōu)點(diǎn): 1、寫(xiě)法簡(jiǎn)單易懂 2、假如子組件嵌套了HOC,也可以指向真實(shí)子組件
      • 缺點(diǎn): 1、需要自定義props屬性 2、需要自定義暴露的方法

      import React, { useImperativeHandle } from 'react'; import { observer } from 'mobx-react'   const Parent = () => {   let ChildRef = React.createRef();    function handleOnClick() {     ChildRef.current.func();   }    return (     <div>       <button onClick={handleOnClick}>click</button>       <Child onRef={ChildRef} />     </div>   ); };  const Child = observer(props => {   //用useImperativeHandle暴露一些外部ref能訪問(wèn)的屬性   useImperativeHandle(props.onRef, () => {     // 需要將暴露的接口返回出去     return {       func: func,     };   });   function func() {     console.log('執(zhí)行我');   }   return <div>子組件</div>; });  export default Parent;
      登錄后復(fù)制

      2、forwardRef

      使用forwardRef拋出子組件的ref

      這個(gè)方法其實(shí)更適合自定義HOC。但問(wèn)題是,withRouter、connect、Form.create等方法并不能拋出ref,假如Child本身就需要嵌套這些方法,那基本就不能混著用了。forwardRef本身也是用來(lái)拋出子元素,如input等原生元素的ref的,并不適合做組件ref拋出,因?yàn)榻M件的使用場(chǎng)景太復(fù)雜了。

      import React, { useRef, useImperativeHandle } from 'react'; import ReactDOM from 'react-dom'; import { observer } from 'mobx-react'  const FancyInput = React.forwardRef((props, ref) => {   const inputRef = useRef();   useImperativeHandle(ref, () => ({     focus: () => {       inputRef.current.focus();     }   }));    return <input ref={inputRef} type="text" /> });  const Sub = observer(FancyInput)  const App = props => {   const fancyInputRef = useRef();    return (     <div>       <FancyInput ref={fancyInputRef} />       <button         onClick={() => fancyInputRef.current.focus()}       >父組件調(diào)用子組件的 focus</button>     </div>   ) }  export default App;
      登錄后復(fù)制

      總結(jié)

      父組件調(diào)子組件函數(shù)有兩種情況

      • 子組件無(wú)HOC嵌套:推薦使用ref直接調(diào)用
      • 有HOC嵌套:推薦使用自定義props的方式

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)