react-table'pivotBy':我如何使在数据透视表中使用的列可过滤

时间:2019-01-31 22:42:21

标签: javascript reactjs react-table

在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中提到的列名的过滤器选项。

如何获取州和城市的过滤器选项?

0 个答案:

没有答案