标签下的名称和产品被渲染但是没有渲染的循环..但我可以看到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>