th 标签下的 name 和 Product 被渲染但循环 for 没有被渲染..但我可以看到 console.nad 中的值没有抛出任何错误......请麻
<tr>
<th>name</th>
<th>productID</th>
{this.state.product[0].customCoulmns.forEach(function (columnhead) {
console.log("columnhead lolzz ",columnhead.columnName);
return <th key={columnhead.columnName}>{columnhead.columnName}</th>
}.bind(this))
}
</tr>