在React

时间:2016-01-15 01:25:39

标签: javascript reactjs

如何将数组作为属性传递给组件。以下两点都没有实现我想要的。我想传递项目数组,在组件中操作它们并在render方法中输出。

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

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

1 个答案:

答案 0 :(得分:27)

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

<List columns={['one', 'two', 'three', 'four']} />