gpt4 book ai didi

javascript - React - 在 map 函数中表达预期

转载 作者:行者123 更新时间:2023-12-04 14:02:41 25 4
gpt4 key购买 nike

我正在使用 React 功能组件。
当我在下面的代码中使用 map 函数时,它一直显示错误 Expression expected.

return(
<div class="sm:grid sm:grid-cols-2 lg:grid-cols-3 gap-4 space-y-4 sm:space-y-0">
{(news.articles).map(new => {
return (
<Card
title={article.title}
content={article.content}
onClick={() => {
console.log("clciked");
}}
/>
)
})
}
</div>
)

最佳答案

我猜你在 map 回调中使用的 new 是 Javascript 中的保留关键字。使用另一个标识符,例如您已经在引用的 article

return(
<div class="sm:grid sm:grid-cols-2 lg:grid-cols-3 gap-4 space-y-4 sm:space-y-0">
{news.articles.map(article => {
return (
<Card
title={article.title}
content={article.content}
onClick={() => {
console.log("clciked");
}}
/>
)
})}
</div>
)

关于javascript - React - 在 map 函数中表达预期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69491285/

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