TypeScript與React中如何使用ref?以下這篇文章要跟大家介紹一下ref用法。有一定的參考價值,有需要的朋友可以參考一下,希望對大家有幫助。
推薦教學:《JavaScript影片教學》
##在父元件中,寫如下:
類別中定義child,用於存放子元件的作用域public child: any;Copy to clipboardErrorCopied
public onRef(ref:any){ this.child = ref }Copy to clipboardErrorCopied
<ChildPage onRef={(el)=>this.onRef(el)} />Copy to clipboardErrorCopied
this.onRef = this.onRef.bind(this)Copy to clipboardErrorCopied
在子元件中,寫如下:
1、constructor中onRef綁定thisthis.props.onRef(this)Copy to clipboardErrorCopied
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的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!