gpt4 book ai didi

android - 根据一组类别检索数据

转载 作者:行者123 更新时间:2023-11-30 00:42:44 25 4
gpt4 key购买 nike

我正在尝试检索一组根据菜单类别对它们进行分组的餐厅菜单数据,并为每个菜单类别创建菜单项列表,并使用类别键创建这些列表的 HashMap。

下面的 JSON 树显示了我如何在餐厅 ID 下存储每家餐厅的菜单项。

  "Menu" : { 
"C39Jv1oVVdXbQdyCOcTQZyZnmC3x" : { //Restaurant ID
"applepie" : {
"item_category" : "Desserts",
"item_name" : "Apple Pie",
"item_price" : "280"
},
"chocopudding" : {
"item_category" : "Desserts",
"item_name" : "Chocolate Pudding",
"item_price" : "320"
},
"friedrice" : {
"item_category" : "Main Courses",
"item_name" : "Fried Rice",
"item_price" : "250"
},
"seafoodrice" : {
"item_category" : "Main Courses",
"item_name" : "Sea Food Fried Rice",
"item_price" : "300"
}
}
}

每个餐厅的食物类别存储在MenuCategories节点

"MenuCategories" : {
"C39Jv1oVVdXbQdyCOcTQZyZnmC3x" : { //Restaurant ID
"Desserts " : true,
"Main Courses" : true
}
}

根据上述数据集,我试图实现的是这样的:

  1. List1 :(menu,menu)//甜点
  2. List2 :(menu,menu)//主菜

这是我的尝试(减去创建列表和 Hashmap 的部分以保持代码简短):

两个节点的数据库引用:

mDatabase = FirebaseDatabase.getInstance().getReference().child("Menu").child(res_id);
mMenuCategoryRef = FirebaseDatabase.getInstance().getReference().child("MenuCategories").child(res_id);

数据检索:

List<String> menuCatList  = new ArrayList<>();
mMenuCategoryRef.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {

for(DataSnapshot data : dataSnapshot.getChildren()){

menuCatList.add(data.getKey()); //adds all the categories to array list

}

for(String menuCat : menuCatList){

//I'm trying to retrieve items under each category
mDatabase.orderByChild("item_category").equalTo(menuCat).addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
for(DataSnapshot data : dataSnapshot.getChildren()){

System.out.println("MenuListWithCat "+data.getKey()+" - "+data.getValue());
}

}
.....

根据我的代码,我只收到类别为“主要类(class)”的项目,这就是我的 println 打印的内容。

 `System.out.println("MenuListWithCat "+data.getKey()+" - "+data.getValue());`

MenuListWithCat friedrice - {item_name=Fried Rice, item_category=Main Courses, item_price=250}
MenuListWithCat seafoodrice - {item_name=Sea Food Fried Rice, item_category=Main Courses, item_price=300}

它完全跳过了“甜点”类别,这是为什么呢?

任何与此相关的帮助都会非常有帮助。

最佳答案

我想通了。我使我的 Firebase 数据检索过程复杂化,以便为每个类别制作单独的菜单项列表,我决定检索所有菜单项并将其添加到 ArrayList 中,而不考虑它们的类别类型,如下所示:

mDatabase.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {

for (DataSnapshot child : dataSnapshot.getChildren()) {

Menu menu = child.getValue(Menu.class);
menuList.add(menu);

}

然后根据类别对所有菜单项进行分组,并使用一些 Java 逻辑将它们添加到单独的列表中,这为我提供了以下格式的 HashMap:

Map<ItemCategory, ListofItems>

逻辑是这样的:

Map<String, List<Menu>> menuMap= new HashMap<String, List<Menu>>();

for(Menu menuItem : menuList){

List<Menu> tempList = menuMap.get(menuItem.getItem_category());

if(tempList == null){

tempList = new ArrayList<Menu>();
menuMap.put(menuItem.getItem_category(), tempList);

}

tempList.add(menuItem);
}

我从数据库中删除了不需要的 MenuCategories 节点,正如 Frank 在评论中提到的那样。

我希望这对将来的人有所帮助! :)

特别感谢@Frank 提供宝贵的反馈和支持。

关于android - 根据一组类别检索数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42298230/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com