我是React Native的新手,并且有Android Native的使用经验。 在Android Java Native中,我们可以隐藏和显示后端类的进度条,但是如何在React Native中实现相同的目的
下面是我用于调用每个API的通用帮助程序类
import axios from 'axios';
import ErrorUtils from '../exceptionUtills/errorUtils'
export const AxiosHelpers = {
executeGetURL: function () {
},
executePostURL: function (apiUrl,requestParams) {
// I want to show progress bar here
var res = axios.post(apiUrl,requestParams)
.then(ErrorUtils.checkStatus)
.then(function (response) {
return response;
// I want to dismiss progress bar here
})
return res;
},
}
我想在API调用之前显示进度条,并在得到响应后将其停止