早上好,我需要前卫的知识,我想在搜索中传递一个条件,以仅按地图上的商品或购买商品过滤某些餐厅的搜索结果,这可能会对您有所帮助>
返回所有餐厅的所有订单:
void _addOrdersListener(){
_firestore.collection("orders").snapshots().listen((snapshot){
snapshot.documentChanges.forEach((change){
String oid = change.document.documentID;
}
我尝试其他日子的方式:
void _addOrdersListener(){
_firestore.collection("orders").where("[products][product][restid]", isEqualTo: restid).snapshots().listen((snapshot){
snapshot.documentChanges.forEach((change){
String oid = change.document.documentID;
}
firebase图片