0
태그 이름 아래의 제품 및 제품이 렌더링되지만 for가 렌더링되지 않습니다. 그러나 console.nad의 값을 볼 수 있습니다. 오류가 발생하지 않습니다 ... 대마하십시오React <th> 루프에서 렌더링되지 않습니다
<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>