最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

javascript - how to filter all columns of html table using react js? - Stack Overflow

matteradmin8PV0评论

I am creating custom data table. I have added sorting, pagination but unable to do searching on all columns. Here is the URL of what i have created

Data array contains uppercase words and integers.

How to implement filter/search on all columns using single input box?

I am creating custom data table. I have added sorting, pagination but unable to do searching on all columns. Here is the URL of what i have created

https://codesandbox.io/s/yv48o7onwj

Data array contains uppercase words and integers.

How to implement filter/search on all columns using single input box?

Share Improve this question asked Jun 26, 2018 at 4:51 Sameer ThiteSameer Thite 2,4693 gold badges12 silver badges13 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 6

You can do it using Array.filter

const filtered = products.filter(item => (
   item.id === searchString ||
   item.name === searchString ||
   item.price === searchString ||
   item.qa === searchString ||
   item.qr === searchString ||
   item.vendor === searchString
));

and then replace {products.map(item => { on line 326 to {filtered.map(item => {

Post a comment

comment list (0)

  1. No comments so far