在我的react应用程序中,我具有传递道具的组件。道具可以使用不同的名称。我想用PropTypes验证它们(应该为PropTypes.oneOfType([PropTypes.number, PropTypes.object]
)。我怎样才能做到这一点?
答案 0 :(得分:0)
请看看这些PropTypes validating examples.
您可以编写类似于示例的自定义验证器:
func layoutAttributesForItem(at indexPath: IndexPath) -> UICollectionViewLayoutAttributes?
希望有帮助!