admin管理员组文章数量:1341690
I am trying to convert my firebase implementation which previously used realtime database to use firestore as I like the idea of collections and the perks of using it.
How do I implement below into firestore equivalent?
firebase.database().ref('documentPath').push()
I am trying to convert my firebase implementation which previously used realtime database to use firestore as I like the idea of collections and the perks of using it.
How do I implement below into firestore equivalent?
firebase.database().ref('documentPath').push()
Share
Improve this question
asked Jun 19, 2018 at 7:50
Jojo NarteJojo Narte
3,1142 gold badges33 silver badges57 bronze badges
1
- firebase.google./docs/firestore/manage-data/… – André Kool Commented Jun 19, 2018 at 9:18
1 Answer
Reset to default 13To have the same bahaviour in Cloud Firestore as you have in Firebase Realtime database when using the push()
function, is to let Cloud Firestore auto-generate an ID for you. You can do this by calling add()
function like this:
var addYourDoc = db.collection('documentPath').add({
property_key: 'property_value',
}).then(ref => {
console.log('document ID: ', ref.id);
});
The output in the console will be the actual generated id.
本文标签: javascriptEquivalent of push in FirestoreStack Overflow
版权声明:本文标题:javascript - Equivalent of .push in Firestore? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743649226a2516030.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论