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