【发布时间】:2021-11-15 18:06:18
【问题描述】:
我确实通过他们的 API 加载 aittable 记录:
const base = airtable.base(item.baseId);
base("Dishes")
.select({
})
.eachPage(
function page(records, fetchNextPage) {
tableRecords.push(...records);
// To fetch the next page of records, call `fetchNextPage`.
// If there are more records, `page` will get called again.
// If there are no more records, `done` will get called.
fetchNextPage();
},
function done(err) {
if (err) {
console.error(err);
return;
}
console.log("@@Done", tableRecords.length);
}
);
因此,我收到了 2202 条记录。但在 UI 的表格中,我确实看到了 2271 条记录。当我导出到 csv 时,我也看到了相同的 2271。
代码非常基本,我什至删除了view 设置以确保这不是一个演示问题。
Google 没有帮助我(没有任何关系)。有没有人面临同样的问题?有什么解决办法吗?
注意:当然,我已经比较了两个列表并找到了我确实错过的项目,但是在观察这些项目时,我发现那里没有什么特别之处。所以它说我what我确实想念,但不是why
【问题讨论】:
标签: airtable