我想显示一个自定义警报,它是响应后来自axios拦截器的第三方库。但是Interceptors文件没有任何UI,因此如何显示我的自定义警报而不将其添加到render方法中。
import AlertPro from "react-native-alert-pro";
// Add a response interceptor
axiosInstance.interceptors.response.use(
function (response) {
// Do something with response data
return response.data;
},
function (error) {
AlertPro.open();
// Do something with response error
// return Promise.reject(error);
}
);
我已经尝试了上面的代码,但是没有用。