繁体   English   中英

使用setState的过滤器不起作用。 反应

[英]Filter with setState not working. React

我有该代码,我没有得到过滤。 我想过滤所有带有字母“ a”的内容,但看起来SetState无法正常工作。 我找不到错误,有人可以帮助我吗?

它看起来像是setstate不起作用。 在哪里“ a”将是输入值。

我尝试创建一个搜索功能,以呈现与搜索文本输入匹配的人员的姓名。

 class Pagination extends React.Component { constructor() { super(); this.state = { elementsPerPage:3, currentPage:0, peoples:[ {id:0, name:"aaa"}, {id:1, name:"bb"}, {id:2, name:"aa"}, {id:3, name:"cc"}, {id:4, name:"dada"}, {id:5, name:"Daddi"}, {id:6, name:"Dwe"}, {id:7, name:"ta"}, {id:8, name:"lala"}, {id:9, name:"lele"}, {id:10, name:"f"}, {id:11, name:"a"}], input: "", filtered: [], }; this.nextPage = this.nextPage.bind(this); this.previousPage = this.previousPage.bind(this); this.filterNames = this.filterNames.bind(this); this.getValueInput = this.getValueInput.bind(this); } getValueInput (value) { this.setState({ input: value.target.value }); } filterNames (){ const {peoples, filtered} = this.state; console.log(this.state.filtered) this.filtered = this.state.filtered.filter(item => item.includes('a')) this.setState({filtered: this.filtered }) } elementsOnScreen () { const {elementsPerPage, currentPage, peoples} = this.state; const namesInFiltered = this.state.filtered = peoples.map(item => item.name) return namesInFiltered.map((nome) => <li>{nome}</li>) .slice(currentPage*elementsPerPage, currentPage*elementsPerPage + elementsPerPage) } nextPage () { const {elementsPerPage, currentPage, peoples} = this.state; if((currentPage+1) * elementsPerPage < peoples.length){ this.setState({ currentPage: this.state.currentPage + 1 }); console.log(this.state.currentPage) } } previousPage () { const { currentPage } = this.state; if(currentPage - 1 >= 0){ this.setState({ currentPage: this.state.currentPage - 1 }); } } render() { return ( <div> <input type="text" onChange={ this.getValueInput }></input> <button className='search' onClick={this.filterNames}> Search </button> <button onClick={this.previousPage}> Previous </button> <button onClick={this.nextPage}> Next </button> <ul>Names: {this.elementsOnScreen()}</ul> <h3>Current Page: {this.state.currentPage}</h3> </div> ); } } ReactDOM.render( <Pagination/>, document.getElementById('root') ) 
 <div id="root"></div> 

让我们整理一些东西。 people实际上不是国家,而是财产。 同样,您在您的状态中造成一些混乱,电子调料实际上根本不应该是该状态的一部分

 function keyIncludes(key, value) {
   return el => el[key].includes(value);
 }

 function onPage(page, perPage) {
   return (_, i) => i >= (page - 1) * perPage && i < page * perPage;
 }

 class Pagination extends React.Component {
   constructor(props) {
     super(props);
     this.state = {
       elementsPerPage:3,
       currentPage:0,
       input: ""
     };
   }

  elementsOnScreen() {
    return this.props.people
       .filter(keyIncludes("name", this.state.input))
       .filter(onPage(this.state.currentPage, this.state.elementsPerPage));
  }

   render() {
     return (
        <div>
          <input type="text" onChange = {() => this.handleChange()} />
         <button onClick={() => this.previousPage()}> Previous </button>
        <button onClick={this.nextPage}> Next </button>
        <ul>Names: {this.elementsOnScreen()}</ul>
        <h3>Current Page: {this.state.currentPage}</h3>
       </div>
    );
  }

  /*...*/
 }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM