如何使用react native将文档添加到firestore数据库

问题描述 投票:1回答:2

我们正在尝试使用react native app手动添加文档值到firestore DB。

这是我们为web找到的参考代码

db.collection("cities").doc("LA").set({
    name: "Los Angeles",
    state: "CA",
    country: "USA"
})
.then(function() {
    console.log("Document successfully written!");
})
.catch(function(error) {
    console.error("Error writing document: ", error);
});

对于本机反应,我们使用此代码

firebase.firestore().collection('users').doc("hello").add({
        title: this.state.textInput,
        complete: false,
      })

我收到错误就像添加我们没有定义

如何添加文档和集合?

javascript firebase react-native google-cloud-firestore
2个回答
2
投票

您可以将文档添加到集合中。您无法将文档添加到文档中。

要将文档添加到users集合中:

firebase.firestore().collection('users').add({
  title: this.state.textInput,
  complete: false,
})

所以从那里删除.doc("hello")


2
投票

在这里,我找到了我的数据结构的解决方案

firebase
  .firestore()
  .collection("Users")
  .doc("mydoc")
  .collection("Activities")
  .doc("Database")
  .set({
    key: "1",
    value: "",
  })
  .then((ref) => { console.log(ref) });
© www.soinside.com 2019 - 2024. All rights reserved.