React操作DOM之forwardRef問題
React操作DOM之forwardRef
React操作DOM有幾種方式,傳入字符串,傳入一個對象(react推薦的方式),傳入一個函數,今天就講一下使用react封裝過的高階組件forwardRef來操作DOM
首先導入
import React, { PureComponent,createRef,forwardRef } from 'react'
然後const一個函數組件,將它作為App的子組件
const Profile = forwardRef(function (props,ref){ return <h2 ref={ref}>Profile</h2> })
定義App組件
export default class App extends PureComponent { constructor(props){ super(props); this.profileRef = createRef() } render() { return ( <div> <Profile ref={this.profileRef} name={'lsh'}/> <button onClick={e=>this.printRef()}>點擊</button> </div> ) } printRef(){ console.log(this.profileRef.current) } }
當我們點擊按鈕時候
用這個的好處是什麼?因為我們之前操作dom,函數式組件是不行的,因為它沒有實例,用這個高階組件就能完美解決這個問題
React forwardRef使用方法
作用與註意點
- 傳遞ref,把自身的ref綁定到其他地方(e.g. 你把文件交給總裁秘書,總裁秘書把文件交給總裁)
- ref 和 key 有點特殊,不會作為props參數向下傳遞,this.props拿不到ref對象
- 函數組件是沒有實例的,可以用useImperativeHandle實現部分功能
- 高階組件需做特殊處理
父 -> 子 -> 子(Dom)
import React, { useRef } from 'react'; import Content from './content'; const Home = () => { // 創建一個Ref對象 const connectRef = useRef(null); const handleFoucus = () => { const _ref = connectRef.current; _ref.focus(); }; return ( <div> <button onClick={() => handleFoucus()}> 使用子組件中DOM元素的方法 </button> <Content ref={connectRef} /> </div> ); }; export default Home;
import React, { forwardRef } from 'react'; /** * forwardRef包裹後,ref會作為第二個參數,接收傳進來的ref屬性 * e.g. * <Content count={count} user={user} ref={connectRef}> * * @param props - {count, user} * @param ref - connectRef * */ const Content = (props, ref) => { return ( <div> {/* 把ref綁定給傳進來的ref ≈ ref={connectRef} */} <input type="password" ref={ref} /> </div> ) }; export default forwardRef(Content);
父 -> 子 -> 子(class)
import React, { useRef } from 'react'; import Content from './content'; const Home = () => { // 創建一個Ref對象 const connectRef = useRef(null); const handleAdd = () => { const _ref = connectRef.current; const { count } = _ref.state; _ref.setState({ count: count + 1 }) }; return ( <div> <button onClick={() => handleAdd()}> 使用子組件中class組件的屬性和方法 </button> <Content ref={connectRef} /> </div> ); }; export default Home;
import React, { forwardRef } from 'react'; import Header from './header'; import Footer from './footer'; /** * forwardRef包裹後,ref會作為第二個參數,接收傳進來的ref屬性 * e.g. * <Content count={count} user={user} ref={connectRef}> * * @param props - {count, user} * @param ref - connectRef * */ const Content = (props, ref) => { return ( <div> {/* 把ref綁定給傳進來的ref ≈ ref={connectRef} */} <Header ref={ref} /> {/* class組件 */} {/* <Footer ref={ref} /> 函數組件是沒有實例的,所以connectRef.current: null */} </div> ) }; export default forwardRef(Content)
import React from 'react'; export default class Header extends React.Component { state = { count: 0 }; render() { return ( <div> {this.state.count} </div> ) } };
高階組件中的特殊情況
- 高階組件本質是函數,參數為組件,返回值是新組件(增強過的組件)
- 高階組件會把所有接收到的props,傳遞給被包裝的組件(透傳)
- ref 和 key 類似,不是一個prop,所以不會透傳,ref會綁定到外層的高階組件上
- 高階組件可以嵌套多層,e.g. Hoc1(Hoc2(Hoc3(Content)))
所以為瞭把ref傳遞給最裡面的組件,有兩種方法
- 在最外層用 forwardRef 對 ref 對象進行處理,ref -> ref -> props.key = ref
- 不用 ref,用自定義props承載 ref 對象,props.key = ref
/* 處理ref e.g. Hoc1(Hoc2(Content)) <Content ref={myRef} /> 給Content綁定的ref會綁定到Hoc1上,且不會繼續向下傳遞 第一種方法 React.forwardRef =============== 在 Hoc1外面 用React.forwardRef()對ref做處理,用props來傳遞ref 0. 在高階組件外面包裹forwardRef,攔截獲取ref,增加一個props(xxx={ref}),真實組件通過props.xxx獲取 1. 使用時傳 ref={XXXX} // 和第二種方法不同的地方 2. 用forwardRef的第二個參數獲取 ref 3. 增加一個新的props,用來向下轉發ref e.g. forwardedRef={ref} 4. 真實組件中綁定 ref={props.forwardedRef} const Home = (props) => { const connectRef = useRef(null); return ( <div> <Content ref={connectRef} /> </div> ); }; // 被包裝組件 const Content = (props) => { return ( <div> <input type="password" ref={props.forwardedRef} /> </div> ); }; // forwardRef的第二個入參可以接收ref,在Hoc外層對ref做處理 export default React.forwardRef((props, ref) => { const Wrapper = withRouter(Content); // Hoc // forwardRef包裹的是Wrapper // 需要在Wrapper中把ref向下傳遞給真實組件 // Wrapper中增加一個props屬性,把ref對象作為props傳給子組件 return <Wrapper {...props} forwardedRef={ref} />; }); 第二種方法 ========== 0. 使用時就用一個props來保存ref 1. 使用時傳 xxx={ref} // 和第一種方法的不同點 2. 真實組件中綁定 ref={props.xxx} const Home = (props) => { const connectRef = useRef(null); return ( <div> <Content forwardedRef={connectRef} /> </div> ); }; // 定義高階組件 export const Hoc = (WrappedComponent) => { class Wrapper extends React.Component { render() { return <WrappedComponent {...props} /> } } } // 被包裝的組件 const Content = (props) => { return ( <div> <input type="password" ref={props.forwardedRef} /> </div> ); }; // 包裝過程 export default Hoc(Content); * */
總結
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。
推薦閱讀:
- React forwardRef的使用方法及註意點
- React 高階組件HOC用法歸納
- react父組件調用子組件的方式匯總
- 如何深入理解React的ref 屬性
- React報錯解決之ref返回undefined或null