如何在React Native中不添加Jsx标签的情况下显示自定义提醒

时间:2019-03-25 14:04:33

标签: reactjs react-native alert

我想显示一个自定义警报,它是响应后来自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);
      }
    );

我已经尝试了上面的代码,但是没有用。

0 个答案:

没有答案