gpt4 book ai didi

javascript - 如何跨多个页面获取数据?

转载 作者:行者123 更新时间:2023-11-30 07:21:26 24 4
gpt4 key购买 nike

我的项目基于 React、redux、redux-saga、es6,我尝试从这个 API 获取数据:

http://api.dhsprogram.com/rest/dhs/data/BD,2000,2004,2007?&returnFields=CharacteristicLabel,Indicator,IndicatorId,Value&f=json

如您所见,此特定 API 调用显示的数据限制为每页 100 个数据,分布在 40 个页面上。

根据这个答案: http://userforum.dhsprogram.com/index.php?t=msg&th=2086&goto=9591&S=Google它说您可以将限制扩展到每页最多 3000 个数据。

但是,在某些情况下,我会执行超出该限制的 API 调用,这意味着我不会像这样接收所有数据:

export function fetchMetaData(countryCode: string, surveyYears: string) {
return (fetch('http://api.dhsprogram.com/rest/dhs/data/' + countryCode + ',' + surveyYears + '?returnFields=CharacteristicLabel,Indicator,IndicatorId,Value&f=json')
.then(response => response.json())
.then(json => json.Data.map(survey => survey)))
}

所以我的问题是;鉴于我知道数据的总页数,从该 API 获取所有数据的最佳方法是什么。论坛链接中的答案建议循环访问 API。但是,我找不到正确的语法用法来执行此操作。

我的想法是调用一个 API 来获取总页数。然后使用 redux+redux-saga 将其存储在一个状态中。然后执行一个新请求,将总页数作为参数发送,并获取该总页数次。通过这样做,我无法弄清楚为每次迭代存储数据的语法。

最佳答案

一个可能的解决方案 - 这个想法是先获取页面数量,然后进行适当数量的 API 调用,将每次调用的 promise 推送到一个数组中。然后我们等待所有的 promise 解决,并对返回的数据做一些事情。

async function fetchMetaData() {

const response = await fetch('apiUrlToGetPageNumber');

const responses = await Promise.all(
Array.from(
Array(resp.data.pagesRequired),
(_, i) => fetch(`apiUrlToSpecificPage?page=${i}`)
)
);

// do something with processedResponses here

}


关于javascript - 如何跨多个页面获取数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40677764/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com