PropTypes.array の役割
1547 ワード
配列を受け付ける
PropTypes.array
// 受け付けるもの
[33, 'こんにちわ', true]
[{ name: '山田'}, { fruit: 'りんご' }]
配列であれば中身は気にしない。
そのため非推奨
となっている。
配列の値の型もすべてチェックするなら、 arrayOf
を使用する必要がある。
PropTypes.arrayOf(PropTypes.string)
// 受け付けるもの
['1','あいうえお']
Author And Source
この問題について(PropTypes.array の役割), 我々は、より多くの情報をここで見つけました https://qiita.com/masash49/items/4b7352e6a152e51dab7e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .