在来自两个不同来源的本地响应中,处理多个提取调用的最佳方法是什么?

时间:2018-11-06 04:49:08

标签: react-native fetch

我试图调用两个不同的目录,以便在我的应用中显示所需的信息。自从我添加第二次获取以来,我注意到的一件事是,应用程序显示所有更改的速度变慢。这是我正在做什么的一个例子。

fetch(apiURL',{
    method: 'GET',
    headers: {
      Accept: 'application/json',
      'Content-Type': 'application/json',},
    },
}).then((response) => response.json())
  .then((responseJson) => this.setState({thingData:responseJson}))
  .catch((error) => {
    console.error(error);
  }).done();

//fetch for target data
fetch(apiURL,{
  method: 'GET',
  headers:{
    Accept: 'application/json',
    'Content-Type': 'application/json',
  },
}).then((response) => response.json())
  .then((responseJson) => this.setState({targetData: responseJson}))
  .catch((error) => {
    console.error(error);
  }).done();

0 个答案:

没有答案