1
我希望做對公司的FireStore以下數據的搜索: 系列 - >文件 - > {日期{月:10年:2017年}}我可以在firestore中查詢嵌套的文檔值嗎?
var ref = db.collection(collection).doc(document)
ref.where('date.month', '==', 10).get().then(doc=>{
if (!doc.exists) {
console.log('No such document!');
} else {
console.log('Document data:', doc.data());
}
}).catch(err => {
console.log('Error getting document', err);
});
上面的僞代碼不工作。有什麼建議麼?