Firestore 数据库查询问题
Firestore database query issue
如果 user_id
是“BED3wChei4NEiDfQP72atUz2NU43”,我想从 password_entries 获取所有数据
我怎样才能执行相同的操作。
您可以使用以下方法:
FirebaseFirestore.instance
.collection('password_entries')
.where('user_id ', isEqualTo: "BED3wChei4NEiDfQP72atUz2NU43")
.get()
.then((checkSnapshot) {
// Document found - do something with it
print(checkSnapshot.docs[0].data());
});
如果 user_id
是“BED3wChei4NEiDfQP72atUz2NU43”,我想从 password_entries 获取所有数据
我怎样才能执行相同的操作。
您可以使用以下方法:
FirebaseFirestore.instance
.collection('password_entries')
.where('user_id ', isEqualTo: "BED3wChei4NEiDfQP72atUz2NU43")
.get()
.then((checkSnapshot) {
// Document found - do something with it
print(checkSnapshot.docs[0].data());
});