我有一個如下所示的 firestore 集合,我想查詢 Map 字段以過濾結果。這是我的代碼,但我總是看不到任何結果。有人可以幫忙嗎?謝謝你!const myRef = firebase.firestore().collection('otherCollection').doc('123456');const res = await firebase .firestore() .collection('myCollection') .where('testMap.array1', 'in ', myRef) .get();
地圖字段上的 Firestore 集合查詢
子衿沉夜
2023-03-18 11:26:17