如何在ReactJS中切换订单

问题描述 投票:2回答:3

我在ascdesc做排序。我想制作逻辑,如果用户第一次点击我想用name asc更新它,当用户点击第二次我想用name desc更新它。用户点击时会重复相同的方式。

        class Example extends React.Component {
  constructor(props) {
    super(props);

    this.state = {
      Item: 5,
      skip: 0
    }

    this.handleClick = this.handleClick.bind(this);
  }

  urlParams() {
    return `http://localhost:3001/meetups?filter[limit]=${(this.state.Item)}&&filter[skip]=${this.state.skip}`
  }

  handleClick() {
    this.setState({skip: this.state.skip + 1})
  }

  render() {
    return (
      <div>
        <a href={this.urlParams()}>Example link</a>
        <pre>{this.urlParams()}</pre>
        <button onClick={this.handleClick}>Change link</button>
      </div>
    )
  }
}


ReactDOM.render(<Example/>, document.querySelector('div#my-example' ))
javascript reactjs sorting ecmascript-6 es6-promise
3个回答
1
投票

您可以根据州内的情况进行切换。

getSortedData = () => {
  this.setState({
    sortedData: this.state.sortedData === "name asc" ? "name desc" : "name asc"
  }, () => {
    this.getData();
  });
};

所以这个将按以下方式工作:

sortedData = "name asc";
console.log(sortedData);
setInterval(function () {
  sortedData = sortedData === "name asc" ? "name desc" : "name asc";
  console.log(sortedData);
}, 500);

0
投票

这是一个很好的问题。我想你可以做那样的事情。

class App extends React.Component {
  state = {
    names: ['Ane', 'Robert', 'Jane'],
    asc: true,
  };
  
  toggleOrder = () => {
    this.setState({
      names: this.state.asc
        ? this.state.names.sort()
        : this.state.names.reverse(),
      asc: !this.state.asc,
    });
  }
  
  render() {
    const { names, asc } = this.state;
    
    return (
      <div>
        <button
          onClick={this.toggleOrder}
        >
          {
            asc ? 'des' : 'asc'
          }
        </button>
        <ul>
          {
            names.map(name => (
              <li>{name}</li>
            ))      
          }
        </ul>
      </div>
    );
  }
}


ReactDOM.render(
  <App />,
  document.querySelector('#app')
);
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
<div id="app"></div>

0
投票

在组件状态中定义order并使用true初始化它。

constructor(props){
        super(props);
        this.state={
          order: true, 
          sortedData: ''
        }
       }
       
        getSortedData =() => {
            
            if (this.state.order) {
              this.setState({order: false, sortedData: 'name desc' }, () => {
                this.getData();
              });
            } else {
              this.setState({order: true, sortedData: 'name asc' }, () => {
                this.getData();
              });
            }
        }
© www.soinside.com 2019 - 2024. All rights reserved.