14
特定の形状のアイテムのネストされた配列にデフォルトの小道具を提供する方法はありますか?Reactでネストされた図形にデフォルトの小道具をどのように提供しますか?
以下の例では、私の最初の試みが見られますが、これは期待どおりに機能しません。この例では
static propTypes = {
heading: PT.string,
items: PT.arrayOf(PT.shape({
href: PT.string,
label: PT.string,
})).isRequired,
};
static defaultProps = {
heading: 'this works',
items: [{
href: '/',
label: ' - this does not - ',
}],
};
、私は次のことを期待する:
// Given these props
const passedInProps = {
items: [{ href: 'foo', href: 'bar' }]
};
// Would resolve to:
const props = {
heading: 'this works',
items: [
{ href: 'foo', label: ' - this does not - ' },
{ href: 'bar', label: ' - this does not - ' },
]
};