gpt4 book ai didi

javascript - 相当于 Firestore 中的 .push?

转载 作者:行者123 更新时间:2023-11-29 10:59:02 25 4
gpt4 key购买 nike

我正在尝试将我以前使用实时数据库的 firebase 实现转换为使用 firestore,因为我喜欢集合的想法和使用它的好处。

我如何将以下实现到等效的 Firestore 中?

firebase.database().ref('documentPath').push()

最佳答案

使用 push() 函数时,要在 Cloud Firestore 中拥有与在 Firebase 实时数据库中相同的行为,就是让 Cloud Firestore 自动为您生成一个 ID。您可以像这样调用 add() 函数来完成此操作:

var addYourDoc = db.collection('documentPath').add({
property_key: 'property_value',
}).then(ref => {
console.log('document ID: ', ref.id);
});

控制台中的输出将是实际生成的 id。

关于javascript - 相当于 Firestore 中的 .push?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50923211/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com