我正在构建一个包含体育信息的反应应用程序,因此我需要每隔几秒钟从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>
);
}
}