是否可以使用id数组查询firestore中的文档列表?
const UserIDs = ['zHYYvrVPLA9LOV6edwOrQhQLt6k1', 'JhUvvrNbfD9LOV6edwOrQhQLt8Gf'
'] //each ID in the array is an existent document id in the collection Users
const selectedUsers = await firestore().collection('Users').doc(UserIDs).get();
尽管存在具有给定id的文档,selectedUsers.data()仍未定义。我知道我可以执行一个循环,我只是想知道我所尝试的方法是否可行。
您可以使用in
运算符和FieldPath.documentId()
函数来构建一个查询,该查询可以根据其ID获取最多10个文档。
类似:
firestore().collection('Users')
.where(FieldPath.documentId(), 'in', UserIDs)