我想使用带有firebase功能的amp-list。在返回之前,我需要等待,直到在阵列中组装了几个记录。
这是我到目前为止使用的代码(由于异步数据库读取而无效):
app.get('/favorites', (req, res)=>{
const user.favorites = {
'-KCyK9E3aQNe6fnjYrF6': {added:'2018-04-23'},
'-KCyK9E3aQNe6fnjYrF7': {added:'2018-04-22'}
};
let data = []
for (var key in user.favorites) {
if (user.favorites.hasOwnProperty(key)){
admin.database().ref('/records/'+key).once('value',snapshot=>{
const record = snapshot.val();
console.log(record.name); //works o.k.
data.push(record);
})
}
}
res.send(data); //returns []
})
我如何改进它(计算所有读数然后退出& res.send(数据))?
答案 0 :(得分:2)
使用promise.all等待promises返回快照。例如,见以下代码示例。
let data = [];
let allDataPromises =[]; // going to the push the promises into this array
for (var key in user.favorites) {
if (user.favorites.hasOwnProperty(key)){
allDataPromises.push(admin.database().ref('/records/'+key).once('value')); // returns the promise
}
}
if(allDataPromises.length>0){
return Promise.all(allDataPromises).then(function (snaps){
snaps.forEach(function(s){
const record = s.val();
console.log(record.name); //works o.k.
data.push(record);
});
if(data.length>0){
return res.status(200).send(data);
}else {
return res.status(400).send('{message:"No Record Found"}');
}
});
}
else{
return res.status(400).send('{message:"No Promises Found"}');
}