gpt4 book ai didi

reactjs - 使用 react-data-table-component 过滤数据表

转载 作者:行者123 更新时间:2023-12-04 16:26:49 27 4
gpt4 key购买 nike

我需要将下面的代码转换为没有钩子(Hook)的普通类组件,任何人都可以帮我解决这个问题,
这是我指的链接
https://jbetancur.github.io/react-data-table-component/?path=/story/filtering--example-1
我需要在不使用钩子(Hook)的情况下进行过滤,因为我只使用类组件。
以下是我正在使用的版本:-
“ react 数据表组件”:“^6.9.3”,
“ react ”:“^ 16.12.0”,

最佳答案

您可以在组件本身中进行过滤

<DataTable
pagination="true"
columns={columns}
data={leaderBoardList.filter((item) => {
if (searchTerm === "") {
return item;
} else if (
item.name.toLowerCase().includes(searchTerm.toLowerCase())
) {
return item;
}
})}
/>

关于reactjs - 使用 react-data-table-component 过滤数据表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62274407/

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