gpt4 book ai didi

javascript - ReactJS 如何为数据库中的数据添加搜索过滤器

转载 作者:行者123 更新时间:2023-12-03 01:29:58 24 4
gpt4 key购买 nike

我正在尝试添加搜索输入来过滤从数据库收到的数据。谁能引导我了解如何过滤和显示搜索结果。我想搜索从项目映射的 MeetingName。现在,应用程序正在显示数据库中的完整项目列表。

谢谢。

import React, { Component } from 'react';
import { Table, Input } from 'reactstrap';
import { connect } from 'react-redux';
import { getItems, deleteItem } from "../actions/itemActions";
import PropTypes from 'prop-types';

class Directory extends Component {

componentDidMount() {
this.props.getItems();
}

onDeleteClick = (id) => {
this.props.deleteItem(id);
}

render() {
const { items } = this.props.item;

return(
<div>
<Input type="text" placeholder="search"/>
<br/>
<Table>
<thead>
<tr>
<th>Day</th><th>Time</th><th>Meeting Name</th><th>Address</th><th>City</th><th>Zip Code</th><th></th>
</tr>
</thead>
{items.map(({ _id, Day, Time, MeetingName, Address, City, Zip }) => (
<tbody key={_id}>
<tr>
<td>{Day}</td><td>{Time}</td><td>{MeetingName}</td><td>{Address}</td><td>{City}</td><td>{Zip}</td>
{/*<Button
className="remove-btn"
color="danger"
size="sm"
onClick={this.onDeleteClick.bind(this, _id)}
>
&times;
</Button>*/}
</tr>
</tbody>
))}
</Table>
</div>
);
}
}

Directory.propTypes = {
getItems: PropTypes.func.isRequired,
item: PropTypes.object.isRequired
}

const mapStateToProps = (state) => ({
item: state.item
})


export default connect(
mapStateToProps,
{ getItems, deleteItem }
)(Directory);

最佳答案

您需要更改组件中的一些内容

  1. 在构造函数中初始化状态如下

    this.state = { searchedValue: '' };
  2. 输入上添加 onChange 事件监听器

    <input type="text" placeholder="search" onChange={this.onSearch} value={this.state.searchedValue} />
  3. 调用 onSearch 函数时使用键入的值更改状态

    onSearch = (event) => {
    this.setState({ searchedValue: event.target.value });
    }
  4. 使用 render 函数中的 searchedValue 过滤 items 列表

    const filteredItems = items.filter((item) => item.meetingName.includes(this.state.searchedValue));
  5. 使用filteredItems数组创建多个tr

正如您帖子的评论中所述,react-data-grid是一个不错的选择,但您可以选择最适合您的应用程序的选项

关于javascript - ReactJS 如何为数据库中的数据添加搜索过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51347613/

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