开发者问题收集

在 React 中将数组传递给组件属性

2016-01-15
12262

如何将数组作为属性传递给组件。以下两种方法都无法实现我想要的效果。我想传递项目数组,在组件中操作它们,并在渲染方法中输出。

<List columns=['one', 'two', 'three', 'four'] /> // unexpected token
<List columns="['one', 'two', 'three', 'four']" /> // passed through as string not array

这种事情有标准语法或最佳实践吗?

1个回答

您需要在 js 表达式周围使用 {}:

<List columns={['one', 'two', 'three', 'four']} />
rojoca
2016-01-15