我在api中有ajax
函数,我正在从我的react js组件
获取axios的请求.如何访问返回的数据以在网页上
显示它.
取决于你想要做什么,但这是一个例子.
componentDidMount() {
axios
.get(`endpoint`)
.then(res => this.setState({ posts: res.data }))
.catch(err => console.log(err))
}
如果您使用react-router通过路由器的onEnter api进行ajax调用,那么这也是一个好方法.
原文链接:https://www.f2er.com/react/300797.html