reactjs – Typescript:如何在React Component中设置子类型?

前端之家收集整理的这篇文章主要介绍了reactjs – Typescript:如何在React Component中设置子类型?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我可以在TypeScript中设置子类型吗?

例如,我有这样的组件

class UserProfile extends React.Component<{ id: number },void>{
}

class Thumbnail extends React.Component<{ children: UserProfile[] },void>{

}

class UsersList extends React.Component<void,void>{

    public render() {
        return (
            <div>
                <Thumbnail><UserProfile id={1} /></Thumbnail>
                <Thumbnail><UserProfile id={2} /></Thumbnail>
            </div>
        )
    }
}

我想定义缩略图组件中支持哪些特定子项以避免这种情况:

class UsersList extends React.Component<void,void>{

    public render() {
        return (
            <div>
                <Thumbnail><UserProfile id={1} /></Thumbnail>
                <Thumbnail><UserProfile id={2} /></Thumbnail>
                <Thumbnail><span>Some plain text</span></Thumbnail> // This should be forbidden because Thumbnail component expects to have an array of UserProfile elements as it can handle them
            </div>
        )
    }
}

这个例子不起作用,但是有什么方法可以做到吗?

set type of children in React Component?

不能用类型注释缩小(它的所有JSX.Element).可以使用运行时内省(每个子项的type属性)来完成.

原文链接:https://www.f2er.com/react/301028.html

猜你在找的React相关文章