admin管理员组文章数量:1345467
I'm new to React.
I know that comments should be received as an object, so I tried using a for...in loop to iterate over them. However, when I attempted to use the for...in loop, I encountered an error:
{for (for Comment in commentData){
<div className="space-y-6">
<div className="border-b pb-6">
<div className="flex items-start gap-4">
<img
src={Nodejs}
alt="Nodejs"
className="w-10 h-10 rounded-full object-cover"
/>
<div className="flex-1">
<div className="flex items-center gap-3 mb-2">
<h3 className="font-semibold">{Comment.userName}</h3>
<span className="text-gray-500 text-sm">{Comment.date}</span>
</div>
<p className="text-gray-700">{Commentment}</p>
</div>
</div>
</div>
</div>
}}
The error message says:
Unexpected token: did you mean {}?
I believe the issue is with how I am using the for...in loop inside JSX. Can someone explain the correct way to iterate over commentData and why this error occurs? I'd also appreciate an explanation of how JSX handles loops and how to properly fix this issue.
I'm new to React.
I know that comments should be received as an object, so I tried using a for...in loop to iterate over them. However, when I attempted to use the for...in loop, I encountered an error:
{for (for Comment in commentData){
<div className="space-y-6">
<div className="border-b pb-6">
<div className="flex items-start gap-4">
<img
src={Nodejs}
alt="Nodejs"
className="w-10 h-10 rounded-full object-cover"
/>
<div className="flex-1">
<div className="flex items-center gap-3 mb-2">
<h3 className="font-semibold">{Comment.userName}</h3>
<span className="text-gray-500 text-sm">{Comment.date}</span>
</div>
<p className="text-gray-700">{Commentment}</p>
</div>
</div>
</div>
</div>
}}
The error message says:
Unexpected token: did you mean {}?
I believe the issue is with how I am using the for...in loop inside JSX. Can someone explain the correct way to iterate over commentData and why this error occurs? I'd also appreciate an explanation of how JSX handles loops and how to properly fix this issue.
Share Improve this question edited yesterday Phil 165k25 gold badges262 silver badges267 bronze badges asked yesterday DipeshDipesh 194 bronze badges 2 |1 Answer
Reset to default 0You have to use map function to render the commentData, .map() returns a new array of
<div className="space-y-6"> .... </div>
elements, which React can directly render.
for..in does not return.
本文标签: reactjsUnexpected tokenfor in loop in react jsStack Overflow
版权声明:本文标题:reactjs - Unexpected token, for in loop in react js - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743800686a2541254.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
for..in
iterates an object's keys which wouldn't typically have properties likeuserName
,date
andcomment
. What sort of object iscommentData
? – Phil Commented yesterday