查询包含用户 ID 的 Firebase 对象



>我有一个包含产品列表的Firebase数据库,每个产品都有一个购物车元素的子列表。我只想接收包含具有正确用户ID的购物车元素的产品元素。

我正在使用 FirebaseUI listadapter。我得到了产品列表的所有元素,但我只想显示包含用户ID的产品。

是否可以从列表适配器中删除视图?或者可以按某些查询排序?

欢迎所有解决问题的想法!

编辑

这是产品类的一部分。

public class Product implements Serializable{
    private boolean active;
    private ArrayList<Cart> carts;
    private String description;
    private String details;
    private String ean;
    private String id;
    private String image;
    private String name;
    private Float price;
    private ArrayList<ProductPack> productpacks;
    private int stock;
    private int stockavailable;
    private Float tax;
    private String users; 
}

存储在 Firebase 中的部分数据:

products
     -KG8O_5iHKWGCBytLtn0
         active: true
         carts
             0
                 amount: 11
                 userID: "google:116879660852602200588"
             1
                 amount: 12
                 userID: "google:116879660852602200589"
         description: ""
         details:  ""
         ean: ""
         id: "-KG8O_5iHKWGCBytLtn0"
         image: "iVBORw0KGgoAAAANSUhEUgAABqsAAAPACAIAAAAt5NQJAAA..."
         name: "test"
         price: 1
         stock: 0
         stockavailable: 0
         tax: 1
         users: ""
     -KG9-r5ATr1BokkVzuYt
         active: true
         carts
             0
                 amount: 11
                 userID: "google:116879660852602200588"
             1
                 amount: 12
                 userID: "google:116879660852602200589"
         description: ""
         details: ""
         ean: ""
         id: "-KG9-r5ATr1BokkVzuYt"
         image: "iVBORw0KGgoAAAANSUhEUgAABqsAAAPACAIAAAAt5NQJAAA..."
         name: "test"
         price: 1
         stock: 0
         stockavailable: 0
         tax: 0.25
         users: ""

您可以使用查询来告知 Firebase 服务器过滤返回的数据:

Firebase ref = new Firebase("https://yours.firebaseio.com");
Firebase products = ref.child("products");
Query userProducts = products.orderByChild("userId").equalTo(authData.uid);
FirebaseListAdapter<Product> adapter = new FirebaseListAdapter<Product>(
    this,
    Product.class,
    R.layout.product_layout,
    userProducts
) { ...

这记录在有关查询的 Firebase 文档中,我强烈建议您阅读这些文档。花几个小时在Firebase的Android开发人员指南上,将为您节省很多时间。

针对此用例优化的数据结构

虽然这将起作用,但您似乎已将类似SQL的结构应用于NoSQL数据库。要返回userProducts,Firebase服务器必须考虑所有产品。随着产品*用户列表的增长,这将开始花费越来越多的时间。

读取优化程度更高的结构考虑到您通常希望为用户访问产品,因此它存储每个用户的产品。

UserProducts
  uid1
    product1: { ... }
    product3: { ... }
    product5: { ... }
  uid2
    product2: { ... }
    product4: { ... }
    product6: { ... }

现在,您可以访问用户的产品:

Firebase ref = new Firebase("https://yours.firebaseio.com");
Firebase products = ref.child("UserProducts");
Firebase userProducts = products.child(authData.uid);
FirebaseListAdapter<Product> adapter = new FirebaseListAdapter<Product>(
    this,
    Product.class,
    R.layout.product_layout,
    userProducts
) { ...

相关内容

  • 没有找到相关文章

最新更新