gpt4 book ai didi

reactjs - 动态更新 react 表中可用记录数的计数

转载 作者:行者123 更新时间:2023-12-04 02:49:23 25 4
gpt4 key购买 nike

我是 React JS 的初学者。我正在使用 react 表

如何显示表中可用记录的总数并在过滤时更新计数?

我试图添加数组长度——总记录数:{this.props.data.length}。但是每次过滤表数据时都不会重新渲染我的数组长度。即使我过滤它也保持不变。

       const paginationOptions = {
showPagination: false,
};

const filterOptions = {
filterable: true,
defaultFilterMethod: (filter, row, column) => {
const id = filter.pivotId || filter.id;
return row[id] !== undefined
? String(row[id])
.toLowerCase()
.includes(filter.value.toLowerCase())
: true;
},
};

type DefaultReactTableProps = {
data: Array<{}>,
history?: {}, // required to make a row or cell linkable
by pushing to history onClick
};

class DefaultReactTable extends React.Component {
props: DefaultReactTableProps;
render() {
console.log('Render',this.props);
const noFilter = this.props.noFilter ? null :
filterOptions;
return (
<ReactTable
{...paginationOptions}
{...noFilter}
defaultPageSize={this.props.data.length}
minRows={0}
{...this.props}
/>
);
}
}

我需要在过滤后立即更新记录总数。我该怎么做?

最佳答案

一个更简单的方法是从 useTable 解构行并使用 rows.length得到总数。

const { rows } = useTable({ columns, data })
console.log(rows.length)

关于reactjs - 动态更新 react 表中可用记录数的计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55754123/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com