gpt4 book ai didi

reactjs - React PropTypes : Allow different types of PropTypes for one prop

转载 作者:行者123 更新时间:2023-12-03 12:52:14 26 4
gpt4 key购买 nike

我有一个组件,它接收其大小的 Prop 。 prop 可以是字符串或数字,例如:"LARGE"17

我可以让 React.PropTypes 知道这可以是 propTypes 验证中的其中之一吗?

如果我不指定类型,我会收到警告:

prop type size is invalid; it must be a function, usually fromReact.PropTypes.

MyComponent.propTypes = {
size: React.PropTypes
}

最佳答案

size: PropTypes.oneOfType([
PropTypes.string,
PropTypes.number
]),

了解更多:Typechecking With PropTypes

关于reactjs - React PropTypes : Allow different types of PropTypes for one prop,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41808428/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com