答案 0 :(得分:1)
我认为,您正在尝试实现这样的目标。
我已经在codeandbox here中进行了编辑。 https://codesandbox.io/s/sparkling-sound-yd1ih
return (
<div className="topsearches">
<table border="2" align="center">
<thead>
<th> Search Term </th>
<th>Count </th>
</thead>
<tbody>
{props.topSearches.map((top_search, index) =>
Object.keys(top_search).map((key, index) => {
return (
<tr>
<td>{key}</td>
<td>{top_search[key]}</td>
</tr>
);
})
)}
</tbody>
</table>
</div>
);
为实现此目的而进行的修改:
<thead>
<tbody>
循环如果您还有其他疑问,请告诉我!