通过 axios.get 使用 axios 响应
using axios response through axios.get
在带有 React 的 EMACSsCRIPT 6 代码中,如果我们使用
var raxios = axios.get(some_server_link).then(function()(response) {
.....
use response data
....
});
我注意到我只能在函数内部使用响应。有什么方法可以在这个函数范围之外使用响应的信息吗?
您是否尝试过将响应设置为状态?
axios.get('/url')
.then(res => {
this.setState({ someKey: res.data });
}
那么你应该可以在外部使用它:
this.state.someKey;
在带有 React 的 EMACSsCRIPT 6 代码中,如果我们使用
var raxios = axios.get(some_server_link).then(function()(response) {
.....
use response data
....
});
我注意到我只能在函数内部使用响应。有什么方法可以在这个函数范围之外使用响应的信息吗?
您是否尝试过将响应设置为状态?
axios.get('/url')
.then(res => {
this.setState({ someKey: res.data });
}
那么你应该可以在外部使用它:
this.state.someKey;