我正在使用 airtable API,node js
- 我有一张叫做导师的桌子
- 我有第二张桌子,叫做工作
- 我使用了一个查找函数,它将返回每个导师的工作名称
- 我返回记录,以便将其传递给我的视图
- 我得到了未决的承诺。r
router.get('/',function(req, res, next) {
const title= 'test'
const getRecords = async () => {
const records = await mentors
.select({maxRecords: 6, view: "Grid view"})
.eachPage(function page(records, fetchNextPage) {
records.forEach(function(records) {
jobs.find(records.fields["Quel est votre métier actuel"], function(err, record) {
if (err) { console.error("Big Error",err); return; }
records.fields.job = record.fields.Job;
return records
});
});
});
fetchNextPage();
}
getRecords()
.then(function(records) {
console.log(records)
res.render('index',{title: title, records});
});
});