我有一个如下所示的 firestore 集合,我想查询 Map 字段以过滤结果。这是我的代码,但我总是看不到任何结果。有人可以帮忙吗?谢谢你!
const myRef = firebase.firestore().collection('otherCollection').doc('123456');
const res = await firebase
.firestore()
.collection('myCollection')
.where('testMap.array1', 'in ', myRef)
.get();
DIEA
相关分类