gpt4 book ai didi

javascript - 如何声明 proptypes 以验证特定字符串的数组?

转载 作者:行者123 更新时间:2023-12-03 07:25:13 25 4
gpt4 key购买 nike

传递给组件的值可以是字符串数组。该字符串表示不同的方向:top , right , bottom , left .

如何为组件指定 proptypes 以仅允许指定方向的数组?

  <Arrows
directions=['left', 'bottom'] // accepts the array
/>
  <Arrows
directions=['left', 'back'] // doesn't accept the array
/>

最佳答案

像这样的东西应该可以完成这项工作:

directions: PropTypes.arrayOf(PropTypes.oneOf(['top', 'right', 'bottom', 'left'])),

关于javascript - 如何声明 proptypes 以验证特定字符串的数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60912119/

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