Axios如何从API检索最后3篇文章

时间:2019-07-19 19:02:41

标签: reactjs axios

我想发出一个get请求,该请求从API返回我的Articles数组中的前3条文章。我进行了广泛搜索,找不到解决我问题的任何东西。

基本上,我想要这样的东西:

async componentDidMount() {
    const { data } = await axios.get(`http://localhost:8000/api/articles/${previous_three_articles}/`)
}

1 个答案:

答案 0 :(得分:0)

我必须对请求的视图使用分页,并将页面大小设置为3。 https://www.django-rest-framework.org/api-guide/pagination/