gpt4 book ai didi

flutter - Cloud Firestore子集合访问

转载 作者:行者123 更新时间:2023-12-03 02:55:56 25 4
gpt4 key购买 nike

访问子集合时,应使用如下代码:

DocumentSnapshot userSnapshot = await Firestore.instance
.collection('users')
.document(userId)
.collection('shoppingLists')
.document(listName)
.get();

或这个:
DocumentSnapshot userSnapshot = await Firestore.instance
.collection('users/$userId/shoppingLists')
.document(listName)
.get();



我喜欢第一种风格。它们转换为相同的I / O吗?

最佳答案

结果没有差异。

实际上,您甚至可以将第二个缩短为:

DocumentSnapshot userSnapshot = await Firestore.instance
.document('users/$userId/shoppingLists/$listName')
.get();

关于flutter - Cloud Firestore子集合访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58498568/

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