反应本机获取不调用然后或捕获

时间:2017-01-04 15:19:48

标签: javascript react-native fetch

我正在使用fetch在react-native中进行一些API调用,有时随机fetch不会向服务器发送请求,而我的then或except块也不会被调用。这是随机发生的,我认为可能存在竞争条件或类似情况。在这样的请求失败后,对同一API的请求永远不会被解雇,直到我重新加载应用程序。任何想法如何追踪这背后的原因。我使用的代码如下。

const host = liveBaseHost;
const url = `${host}${route}?observer_id=${user._id}`;
let options = Object.assign({
        method: verb
    }, params
    ? {
        body: JSON.stringify(params)
    }
    : null);
options.headers = NimbusApi.headers(user)
return fetch(url, options).then(resp => {
    let json = resp.json();
    if (resp.ok) {
        return json
    }
    return json.then(err => {
        throw err
    });
}).then(json => json);

3 个答案:

答案 0 :(得分:7)

Fetch可能会抛出错误而您还没有添加catch块。试试这个:

return fetch(url, options)
  .then((resp) => {
    if (resp.ok) {
      return resp.json()
        .then((responseData) => {
          return responseData;
        });
    }
    return resp.json()
      .then((error) => {
        return Promise.reject(error);
      });
  })
  .catch(err => {/* catch the error here */});

请记住,Promise通常采用以下格式:

promise(params)
  .then(resp => { /* This callback is called is promise is resolved */ },
        cause => {/* This callback is called if primise is rejected */})
  .catch(error => { /* This callback is called if an unmanaged error is thrown */ });

我正在以这种方式使用它,因为我之前遇到过同样的问题。

让我知道它对你有帮助。

答案 1 :(得分:1)

fetch包裹在try-catch中:

let res;
try {
    res = fetch();
} catch(err) {
    console.error('err.message:', err.message);
}

如果你看到“网络故障错误”,它可能是CORS,也可能是非常有趣的,但它过去让我了,请检查你是否处于飞行模式。

答案 2 :(得分:0)

我也陷入了困境,api调用既没有陷入困境,也没有陷入困境。确保您的电话和开发代码已连接到同一Internet网络,这对我来说是可行的。