代码之家  ›  专栏  ›  技术社区  ›  raju

在firestore中创建密钥

  •  0
  • raju  · 技术社区  · 5 年前

    我想在Firestore中设置集合中的实际值之前生成一个键。在firebase中,语法是 firebase.database().ref().child('myposts').push().key .

    我怎么能在家里做呢 firestore .

    1 回复  |  直到 4 年前
        1
  •  1
  •   Dharman chazomaticus    4 年前

    我用。。。

    构造函数(私有)afs:AngularFirestore公司){}

    按键=this.afs.createId()

        2
  •  0
  •   Gastón Saillén    5 年前

    在Firestore,你可以打电话 add() 生成一个随机键来推送数据。

    db.collection('pathRef').add({
     ...
    }).then(function(docRef) {
     ...
    });
    

    Documentation