gpt4 book ai didi

javascript - 将数组传递给 React 中的组件属性

转载 作者:可可西里 更新时间:2023-11-01 01:29:39 25 4
gpt4 key购买 nike

如何将数组作为属性传递给组件。以下都没有实现我正在寻找的东西。我想传递项目数组,在组件中操作它们并在渲染方法中输出。

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

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

最佳答案

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

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

关于javascript - 将数组传递给 React 中的组件属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34802882/

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