91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

TypeScript和React如何使用ref

發布時間:2021-02-05 10:16:20 來源:億速云 閱讀:275 作者:小新 欄目:web開發

這篇文章給大家分享的是有關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”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

凭祥市| 乃东县| 丽水市| 八宿县| 鄢陵县| 安远县| 光山县| 清水河县| 调兵山市| 阳原县| 安岳县| 兴山县| 新乐市| 什邡市| 宝丰县| 亚东县| 新河县| 肥城市| 崇州市| 万全县| 涞水县| 永康市| 灵宝市| 泸水县| 托里县| 扎鲁特旗| 江源县| 乐安县| 文成县| 丽水市| 青浦区| 乌兰察布市| 英吉沙县| 噶尔县| 莱芜市| 吴江市| 沁水县| 鲜城| 丰顺县| 乌拉特后旗| 迁安市|