gpt4 book ai didi

javascript - React.js - 无法在表中显示数组对象

转载 作者:行者123 更新时间:2023-11-30 11:39:21 24 4
gpt4 key购买 nike

我无法在 map 函数中显示数组对象。有人可以告诉我为什么吗?当我尝试在控制台中显示此对象时,我正确地看到了它。

class ProductsGrid extends React.Component {
constructor(props) {
super(props);
}
render() {
return (<Table striped bordered condensed hover>
<thead>
<tr>
<th>Id</th>
<th>Name</th>
<th>Description</th>
<th>Url</th>
</tr>
</thead>
<tbody>
{this.props.products !== null ?
JSON.parse(this.props.products).map((product, index) => {
<tr>
{console.log(product.IdProduct)}
<td>{product.IdProduct}</td>
<td>{product.Name}</td>
<td>{product.Description}</td>
<td>{product.UrlFriendlyName}</td>
</tr>
}) : <tr><td></td><td></td><td></td><td></td></tr>}
</tbody>
</Table>);
}}

最佳答案

您的 map 函数需要一个返回语句。

关于javascript - React.js - 无法在表中显示数组对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43293106/

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