我正在使用 [Firestore 文档][1]。如果我省略了查询,则查询返回数据,.orderBy
但是当我包含它时,没有数据。
async getAccounts() {
return await this.db
.collection("mas-accounts")
.get()
.orderBy("names.givenName")
.then(querySnapshot => {
querySnapshot.forEach(doc => {
doc = doc.data();
console.log(doc);
});
});
}
不按以下顺序排列的结果样本:
姓名:{familyName:“Doe”,givenName:“John”}
关系:{person:“Junior Blanks”,类型:“child”}