标签: reactjs axios
在context.js中,我请求只提取1页和25个项目,因为api被页面分隔。如何获取约765000个项目的所有数据?这是用来阐明问题的图片。
componentDidMount(){ axios.get(url) .catch(err=>console.log(err)) .then(res=>this.setState(()=>({reviews:res.data.reviews}))) }