我在Reactjs中进行分页,因此我需要计算页面总数和帖子总数。
componentDidMount() {
var url = window.location.href + "/wp-json/wp/v2/posts?_embed";
fetch(url)
.then((res) => {
return res.json();
})
.then(
(posts) => {
this.setState({
posts: posts
});
},
(error) => {
this.setState({
isLoaded: true,
error
});
}
)
}
如何插入代码以获取合计帖子。经过研究,他们建议使用响应标头,但我不知道如何使用此代码。
你能帮我吗?非常感谢。