React-Native动态更改获取网址

时间:2019-01-05 20:51:48

标签: javascript ios react-native

我有一个使用云服务器或本地服务器来提供信息的移动应用程序。

在我的App.js中,我有:

helperUtil.apiURL().then((url) => { 
  global.API_URL = url;
})

该函数的作用类似于:

export async function apiURL() {

  try {
    var local = await AsyncStorage.getItem('local')
    local = (local === 'true')

    if(typeof local == 'undefined') return "https://api.website.com";
    else if(!local) return "http://192.168.0.6:8080";
    else return "https://api.website.com";
  }
  catch(err) {
    return "https://api.website.com";
  }

}

然后我的提取命令将是:

fetch(global.API_URL+'/page', { 
  method: 'GET', 
  headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer '+this.state.authtoken },
})

我在这里遇到的问题是API_URL最终未定义,因此我认为可能有更好的解决方案。

打开所有建议。谢谢。

1 个答案:

答案 0 :(得分:0)

在全局obj中插入URL的指示总是使用返回Promise的方法,如果存在,并且不从apiURL函数获取数据,它将返回您的全局对象。使用async / await语法,只有在解析getAPI promise且不会出现url为空的情况下,才会执行提取。

const getAPI = () => {
    return new Promise((resolve, reject) =>{
         if(global.API_URL) {
              resolve(global.API_URL)
         } else {
              helperUtil.apiURL().then((url) => { 
                  global.API_URL = url;
                  resolve(url)
              })
         }

});


const fetchFunc = async () => {
   const url = await getAPI()

   fetch(url+'/page', { 
      method: 'GET', 
      headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer 
      '+this.state.authtoken },
    })
}