在react-table中,当我们使用'pivotBy'选项时,我们将列名提到为
pivotBy={["state", "city"]}
和
columns={[
// we only require the accessor so TreeTable
// can handle the pivot automatically
{
accessor: "state",
},
{
accessor: "city"
},
// any other columns we want to display
{
Header: "First Name",
accessor: "first_name",
},
]}
我可以获取first_name的过滤器选项,但不能获取ivotBy中提到的列名的过滤器选项。
如何获取州和城市的过滤器选项?