码迷,mamicode.com
首页 > 其他好文 > 详细

继承React基础组件时,泛型写法

时间:2021-02-15 11:51:28      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:str   his   ace   ext   pre   absolute   sep   rgb   上层   

一、基础组件

export interface BaseProps {
    name: string;
}

export interface BaseState {
    age: number;
}

export class BaseComp<P extends BaseProps = any, S extends BaseState = any> extends React.Component<P, S> {
    state = {
        name: ‘123‘,
    } as S;
}

 

二、上层组件

 

interface BetterProps extends BaseProps {
    gender: ‘man‘ | ‘female‘;
}

interface BetterState extends BaseState {
    language: string;
}

class BetterComp extends BaseComp<BetterProps, BetterState> {
    state = {
        ...this.state,
        language: ‘中文‘,
    }
}

 

 

 

 

 

继承React基础组件时,泛型写法

标签:str   his   ace   ext   pre   absolute   sep   rgb   上层   

原文地址:https://www.cnblogs.com/amiezhang/p/14395922.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!