中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

屏山县| 望城县| SHOW| 宣汉县| 蒲城县| 涞源县| 周口市| 南城县| 沙洋县| 闽清县| 常熟市| 陇南市| 增城市| 万全县| 乌鲁木齐县| 临澧县| 安平县| 璧山县| 锡林浩特市| 合肥市| 玉溪市| 双江| 平南县| 塘沽区| 泰安市| 东乡族自治县| 沙坪坝区| 伽师县| 忻州市| 大丰市| 宜城市| 宜章县| 汤阴县| 龙游县| 阿尔山市| 张家港市| 周宁县| 凉城县| 平山县| 景洪市| 博罗县|