如何在 Retool 上从 MongoDB 中插入许多?

How to insertMany from MongoDB on Retool?

我在 Retool 上使用 MongoDB,我想做 insertMany。我不明白为什么,但出于某种原因,它不可用...

有人知道我该怎么做吗?可能使用另一种方法作为替代方法?

立即重组 supports insertMany!

您也可以使用 JS 查询多次触发 insertOne 查询。在您的 JS 查询中,使用异步函数触发对列表中每个项目的查询:

return (async () => {
  for (let d of data) {
    await myInsertOneQuery.trigger({ additionalScope: { id: d.id } });
  }
})()