我在下面添加了示例代码。
示例代码:
答案 0 :(得分:1)
您可以使用这样的标题功能来获取总计字段
const columns = [
{
title: () => {
var total = 0;
for(var i=0;i<data.length;i++){
total += data[i].amount;
}
return <div>total {total}</div>;
} ,
dataIndex: "date",
width: 200
},
{
title: "Amount",
dataIndex: "amount",
width: 100
}
];
示例链接在https://codesandbox.io/s/festive-wiles-st6wl?fontsize=14