在 React JS Web 应用程序中使用 Axios 调用 Rest Api
Used Axios to call Rest Api in React JS web Application
我想知道实现以下目标的最佳技术是什么。
想用Axios Library来调用Rest,但是在调用和消费时遇到了一些问题。
- 调用 REST 的最佳模式是什么 API React。
- 哪些工具和参考可以更快地学习。
谢谢
我个人使用Ajax.
这是一个允许您获取数据的代码示例:
request() {
$.ajax({
url: "http://your/url",
method: 'GET',
}).then(function (data) {
// Here process the data you fetched
}
}.bind(this));
}
然后您可以在代码中的某处调用您的函数。
但避免在 componentWillMount 中调用它,这是 React 文档强烈推荐的。 here.
对我来说,我的需求是每n秒从服务器获取数据,所以我在componentDidMount
中调用了它
componentDidMount() {
this.interval = setInterval(() => this.request(), 10000);
}
我想知道实现以下目标的最佳技术是什么。
想用Axios Library来调用Rest,但是在调用和消费时遇到了一些问题。
- 调用 REST 的最佳模式是什么 API React。
- 哪些工具和参考可以更快地学习。
谢谢
我个人使用Ajax.
这是一个允许您获取数据的代码示例:
request() {
$.ajax({
url: "http://your/url",
method: 'GET',
}).then(function (data) {
// Here process the data you fetched
}
}.bind(this));
}
然后您可以在代码中的某处调用您的函数。 但避免在 componentWillMount 中调用它,这是 React 文档强烈推荐的。 here.
对我来说,我的需求是每n秒从服务器获取数据,所以我在componentDidMount
中调用了它componentDidMount() {
this.interval = setInterval(() => this.request(), 10000);
}