我正在尝试使用 react-bootstrap-table 从对象数组中呈现一个表。这是代码:
render() {
var products = [{
id: 1,
name: "Product1",
price: 120
}, {
id: 2,
name: "Product2",
price: 80
}];
return (
<div>
<BootstrapTable data={products} striped hover>
</BootstrapTable>
</div>
)
}
当我运行应用程序时,我看到了这个错误:
Uncaught TypeError: Cannot read property 'reduce' of undefined