我有React-Table组件,我需要在其中插入包含子数据(子表)的数据。
我需要在表格中添加一个扩展器,当我们单击它时,父行将展开并显示子项
const cookies = new Cookies();
cookies.set("Authorization", data, {
path: "/",
httpOnly: false
});
我试图添加到[{
instrument: 'bitcoin',
tradeAmount: '4000',
children: [
{
instrument: 'bitcoin',
tradeAmount: '1000'
},
{
instrument: 'bitcoin',
tradeAmount: '3000'
}
]
},
{
instrument: 'ethereum',
tradeAmount: '6500'
}
]
组件的'pivotBy'属性中,并且还尝试使用SubComponent属性,但是它们对我没有帮助。
有人知道该怎么做吗?