gpt4 book ai didi

arrays - 处理带有 Promise 的对象数组

转载 作者:行者123 更新时间:2023-12-02 20:44:21 29 4
gpt4 key购买 nike

我正在尝试制作一个 Node Express 应用程序,在其中我可以从不同的 url 获取数据,从而调用 node-fetch 来提取某些页面的正文以及有关某些 url 端点的其他信息。然后我想渲染一个 html 表格来通过信息数组显示这些数据。我在调用呈现信息时遇到问题,因为所有函数都是异步的,因此很难确保在调用呈现页面之前所有 promise 调用都已得到解决。我一直在研究使用 bluebird 和 .finally() 和 .all() 的其他 promise 调用,但它们似乎不适用于我的数据,因为它不是 promise 调用数组,而是对象数组。每个对象都是 4 个 Promise 调用,以获取与表中某一列相关的数据(全部在一行中)。在所有 promise 都得到解决后,是否有一个函数或特定的方式来渲染页面?

var express = require('express');
var fetch = require('node-fetch');
fetch.Promise = require('bluebird');
var router = express.Router();
const client = require('../platform-support-tools');


function makeArray() {
var registry = client.getDirectory();

var data_arr = [];
for (var i = 0; i < registry.length; i++) {
var firstUp = 0;
for (var j = 0; i < registry[i]; j++) {
if (registry[i][j]['status'] == 'UP') {
firstUp = j;
break;
}
}
var object = registry[i][firstUp];

data_arr.push({
'name': object['app'],
'status': object['status'],
'swagUrl': object['homePageUrl'] + 'swagger-ui.html',
'swag': getSwag(object),
'version': getVersion(object['statusPageUrl']),
'timestamp': getTimestamp(object['statusPageUrl']),
'description': getDescription(object['healthCheckUrl'])
});
}
return data_arr;
}

function getSwag(object_in) {
var homeUrl = object_in['homePageUrl'];
if (homeUrl[homeUrl.length - 1] != '/'){
homeUrl += '/';
}
var datum = fetch(homeUrl + 'swagger-ui.html')
.then(function (res) {
return res.ok;
}).catch(function (err) {
return 'none';
});
return datum;
}


function getVersion(url_in) {
var version = fetch(url_in)
.then(function(res) {
return res.json();
}).then(function(body) {
return body['version'];
}).catch(function (error) {
return 'none';
});
return version;
}

function getTimestamp(url_in) {
var timestamp = fetch(url_in)
.then(function(res) {
return res.json();
}).then(function(body) {
return body['timestamp'];
}).then(function (res) {
return body['version'];
}).catch(function (error) {
return 'none';
});
return timestamp;
}

function getDescription(url_in) {
var des = fetch(url_in)
.then(function(res) {
return res.json();
}).then(function(body) {
return body['description'];
}).catch(function (error) {
return 'none';
});
return des;
}


/* GET home page. */
router.get('/', function (req, res, next) {
var data_arr = makeArray();

Promise.all(data_arr)
.then(function (response) {
//sorting by app name alphabetically
response.sort(function (a, b) {
return (a.name > b.name) ? 1 : ((b.name > a.name) ? -1 : 0);
});
res.render('registry', {title: 'Service Registry', arr: response})
}).catch(function (err) {
console.log('There was an error loading the page: '+err);
});
});

最佳答案

要等待所有这些 Promise,您必须将它们放入一个数组中,以便可以对它们使用 Promise.all() 。你可以这样做:

let promises = [];
for (item of data_arr) {
promises.push(item.swag);
promises.push(item.version);
promises.push(item.timestamp);
promises.push(item.description);
}
Promise.all(promises).then(function(results) {
// all promises done here
})

如果您想要所有这些 promise 中的值,请返回到对象中,这需要更多的工作。

let promises = [];
for (item of data_arr) {
promises.push(item.swag);
promises.push(item.version);
promises.push(item.timestamp);
promises.push(item.description);
}
Promise.all(promises).then(function(results) {
// replace promises with their resolved values
let index = 0;
for (let i = 0; i < results.length; i += 4) {
data_arr[index].swag = results[i];
data_arr[index].version = results[i + 1];
data_arr[index].timestamp = results[i + 2];
data_arr[index].description = results[i + 3];
++index;
});
return data_arr;
}).then(function(data_arr) {
// process results here in the array of objects
});

如果您必须更频繁地执行此操作而不是一次,您可以删除属性名称的硬编码,并可以迭代所有属性,收集包含 promise 的属性名称并自动处理这些属性。


而且,这是一个更通用的版本,它采用对象数组,其中对象的某些属性是 promise 。此实现修改了对象上的 Promise 属性(它不复制对象数组)。

function promiseAllProps(arrayOfObjects) {
let datum = [];
let promises = [];

arrayOfObjects.forEach(function(obj, index) {
Object.keys(obj).forEach(function(prop) {
let val = obj[prop];
// if it smells like a promise, lets track it
if (val && val.then) {
promises.push(val);
// and keep track of where it came from
datum.push({obj: obj, prop: prop});
}
});
});

return Promise.all(promises).then(function(results) {
// now put all the results back in original arrayOfObjects in place of the promises
// so now instead of promises, the actaul values are there
results.forEach(function(val, index) {
// get the info for this index
let info = datum[index];
// use that info to know which object and which property this value belongs to
info.obj[info.prop] = val;
});
// make resolved value be our original (now modified) array of objects
return arrayOfObjects;
});
}

你可以像这样使用它:

// data_arr is array of objects where some properties are promises
promiseAllProps(data_arr).then(function(r) {
// r is a modified data_arr where all promises in the
// array of objects were replaced with their resolved values
}).catch(function(err) {
// handle error
});

使用Bluebird promise library ,您可以同时使用 Promise.map()Promise.props() ,上面的函数就是这样的:

function promiseAllProps(arrayOfObjects) {
return Promise.map(arrayOfObjects, function(obj) {
return Promise.props(obj);
});
}

Promise.props() 迭代一个对象以查找所有将 Promise 作为值的属性,并使用 Promise.all() 等待所有这些 Promise,并返回一个具有所有原始属性的新对象,但 promise 被解析值替换。由于我们有一个对象数组,因此我们使用 Promise.map() 来迭代并等待整个数组。

关于arrays - 处理带有 Promise 的对象数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45022279/

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