我需要使用axios在react项目中创建一个加载API的进度条,我发现了onDownloadProgress
函数,但我不知道我们是否可以使用它来获取信息,例如加载百分比,或者它只用于文件下载?
所以我不确定我们是否可以通过这个函数获得有关API加载的信息?
我尝试在代码中实现这个函数:
componentWillMount() {
axios.get('https://guillaumeduclos.fr/jd-portfolio/wp-json/wp/v2/posts')
.then(response => {
axios.onDownloadProgress = (progressEvent) => {
let percentCompleted = Math.round( (progressEvent.loaded * 100) / progressEvent.total );
console.log(percentCompleted);
}
this.setState({
datas: response.data[0].acf.project_illustration.url,
loading: false
});
})
.catch(error => {
if(error.response) {
console.log(error.responderEnd);
}
});
}
字符串console.log()
未显示。
2条答案
按热度按时间cwtwac6a1#
你需要把
onDownloadProgress
作为一个选项传入。由于长度为Computable,它将打印出“Infinity”。这是一篇关于这个问题的文章:通过xhr jQuery Ajax化进程
字符串
}
ocebsuys2#
progressEvent.total在json中未定义