gpt4 book ai didi

javascript - NodeJS - 从异步 for 循环获取数组

转载 作者:行者123 更新时间:2023-12-01 01:48:42 25 4
gpt4 key购买 nike

我对 Nodejs 编码相当陌生,遇到了一个问题,我无法将可以在控制台中登录到数组中的项目从发出 url 请求的 for every 循环中进行处理。

这里的代码首先从请求中获取键列表,然后使用 foreach 循环中的另一个请求将其转换为名称。

我需要将姓名列表记录在一个数组中,其中显示“这里需要一个数组”,这是我当前的代码:

request('https://api2.ripaex.io/api/delegates/getNextForgers', function (error, response, body) {
if (!error && response.statusCode == 200) {
var jsonContent = JSON.parse(body);
var delegates = jsonContent.delegates;
for (i = 0; i < delegates.length; ++i) {
request(String('https://api2.ripaex.io/api/delegates/get?publicKey=' + delegates[i]), function (error, response, body) {
if (!error && response.statusCode == 200) {
var jsonContent2 = JSON.parse(body);
console.log(jsonContent2.delegate.username);
}
})
}
console.log('need an array here');
} else { console.log('Error: Could not retrieve the data') }
})

最佳答案

我没有对此进行测试,但这就是我在评论中提到的内容。

request('https://api2.ripaex.io/api/delegates/getNextForgers', function(error, response, body) {
if (!error && response.statusCode == 200) {
var jsonContent = JSON.parse(body);
var delegates = jsonContent.delegates;
var promises = [];

for (i = 0; i < delegates.length; ++i) {
promises.push(new Promise(function(resolve, reject) {
request(String('https://api2.ripaex.io/api/delegates/get?publicKey=' + delegates[i]), function(error, response, body) {
if (!error && response.statusCode == 200) {
var jsonContent2 = JSON.parse(body);
console.log(jsonContent2.delegate.username);
resolve(jsonContent2);
}else{
reject(error);
}
})
}
));
}

Promise.all(promises).then(function(resultsArray){
console.log('need an array here');
}).catch(function(err){
//Handle errors
});

} else {
console.log('Error: Could not retrieve the data')
}
});

但是这是已经封装在 Promise 中的请求 api https://github.com/request/request-promise-native

这是一个使用 request-promise api 的未经测试的示例。

var rp = require('request-promise');

rp({
method: 'GET',
uri: 'https://api2.ripaex.io/api/delegates/getNextForgers',
json: true // Automatically stringifies the body to JSON
//resolveWithFullResponse: true //If you want the full response
}).then(function(jsonContent) {
var delegates = jsonContent.delegates,
promises = [];

for (i = 0; i < delegates.length; ++i) {
promises.push(rp({
url: String('https://api2.ripaex.io/api/delegates/get?publicKey=' + delegates[i]),
json: true
}).then(function(jsonContent2) {
console.log(jsonContent2.delegate.username);
return jsonContent2;
}));
}

return Promise.all(promises).then(function(resultsArray) {
console.log('need an array here');
});


}).catch(function(err){
console.log('Error: Could not retrieve the data')
});

关于javascript - NodeJS - 从异步 for 循环获取数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51757293/

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