当等式和不等式相加时,即使所有匹配项都匹配,为什么Firebase Firestore返回空值。 但是,当我评论喜欢评论地理点不等式的运算符之一并留下相等信息时,它将起作用或重新发表评论,它会返回值。
我是Firebase Firestore的新手。.
firestore集合
{GeoPoint:[4*.****° N, 1*.****° E],
category:2,
complete:'yes',
countrycode:"IT",
dateSort:1532093739048,
price:'5',
priceSort:5,
AdsPath:true}
我的客户得到收款
firebase
.firestore()
.collection('ads')
//.orderBy('complete', sortingBy.step)
//.limit(obj.limit)
.where('complete', '==', 'yes')
.where('countrycode', '==', CountryAds.compare)
.where('AdsPath, ==, AdsPath.compare)
.where('GeoPoint', '>', locations.lesserGeopoint)
.where('GeoPoint', '<', locations.greaterThan)
.get()