firestoreにて、addする際にobjectの中身をひとつずつのdocとして追加したいのですが、うまくいきません。
ひとつずつのdocとして保存したい場合、ループさせて中身をひとつずつ取り出し、その都度firestoreのaddメソッドを呼び出すしかないのでしょうか。
例 const users = { 0: { name: 'alice', age: 20, }, 1:{ name: 'bob', age: 25, }, 2:{ name: 'john', age: 30, } }
実際に書いたコード const db = admin.firestore(); try { await db .collection("users") .add({ ...users, }); } catch (error) { console.log(error); }
あなたの回答
tips
プレビュー