您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關TypeScript和React如何使用ref的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
在父組件中,編寫如下:
類中定義child,用于存放子組件的作用域
public child: any;Copy to clipboardErrorCopied
綁定子組件作用域
public onRef(ref:any){ this.child = ref }Copy to clipboardErrorCopied
子組件上綁定ref
<ChildPage onRef={(el)=>this.onRef(el)} />Copy to clipboardErrorCopied
onRef 綁定this(第3步,不使用箭頭函數的情況)
this.onRef = this.onRef.bind(this)Copy to clipboardErrorCopied
在子組件中,編寫如下:
1、constructor中onRef綁定this
this.props.onRef(this)Copy to clipboardErrorCopied
完成以上4步驟,父組件中可以隨便調用子組件中state的值以及方法。
export class ParentCom extends React.Component<{}, {}> { constructor(props:{}){ super(props); this.onRef = this.onRef.bind(this); } public child: any; onRef(ref:any){ this.child = ref; } getChildFun(){ this.child.testFun(); } render(){ return ( <div> <span>父組件</span> <ChildCom onRef={this.onRef}></ChildCom> </div> ) } } interface childProps{ onRef? : any } export class ChildCom extends React.Component<childProps, {}> { constructor(props:{}){ super(props); this.props.onRef(this); } testFun(){ console.log(123) } render(){ return ( <div> <span>子組件</span> </div> ) } }
感謝各位的閱讀!關于“TypeScript和React如何使用ref”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。