我需要从他的日历中显示用户的所有事件。我得到所有日历的列表,然后遍历每个获取事件并尝试将它们存储在数组中。
app.get('/getEventsList/', function (req, res) {
newArray = [];
function Done(){
console.log(newArray);
}
function getEventsforOneCalendar(token,calid){
gcal(token).events.list(calid, function(err, eventsList) {
newArray.push(eventsList);
});
}
function getEventsList(token) {
gcal(token).calendarList.list(function (err, calendarList) {
if (err) {
//handle error
} else {
calendars = calendarList.items;
forEach(calendars, function (item, index) {
getEventsforOneCalendar(token,item.id);
}, Done);
}
});
}
getEventsList('xxxxxxxxxxxtoken');
});
问题是:那一行 newArray.push(eventsList);
在这一行中传递的任何值,即使是静态的,也不像 newArray.push('test'); 并且没有错误被抛出。如果我记录它,我会在控制台中看到它,但它从未添加到数组中。
可能有什么问题?