根据一组类别检索数据

时间:2017-02-17 12:40:34

标签: android firebase firebase-realtime-database

我尝试检索一组餐馆菜单数据,根据菜单类别对它们进行分组,并为每个菜单类别创建菜单项列表,并使用类别键创建这些列表的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 :(菜单,菜单)//甜点
  2. List2 :(菜单,菜单)//主要课程
  3. 这是我的尝试(减去创建列表和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());
                   }
    
               }
                  .....
    

    根据我的代码,我只收到类别&#34;主要课程&#34;的项目,这是我的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}
    

    它完全跳过&#34;甜点&#34;类别,为什么会这样?

    对此有任何帮助将非常有帮助。

1 个答案:

答案 0 :(得分:1)

我能够弄清楚。我使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提供宝贵的反馈和支持。