Reactjs并进行连续的api调用

时间:2017-07-29 18:30:36

标签: reactjs axios

我正在构建一个包含体育信息的反应应用程序,因此我需要每隔几秒钟从API获取新数据。我想知道最好的方法。

class App extends Component {
  constructor(props) {
    super(props);


    this.state = {
      PlayersbyTeam: ''
    }

  }

  componentDidMount(){

    this.callAxios()
  }


  callAxios(){
     axios.all([
            axios.get('https://api')
        ])
            .then(axios.spread((x) => {


     }))
  }



  render() {
    console.log(this.state)
    return (
      <div className="App">
          <Table  />
      </div>
    );
  }
} 

0 个答案:

没有答案