从 Firebase 和 Java 中提取特定数据



我正在尝试从Firebase中的列表中提取特定的数据元素。如何将变量设置为特定元素的数据,以便将其用于另一个函数?

  getProducts() {
    return this.angularfire.database.list('/products', {
      query: {
        orderByChild: 'name'
      }
    });
  }
this.loadingProvider.show();
// Get all products from database.
this.dataProvider.getProducts().subscribe((products) => {
  this.products = products;
  console.log (products);
  this.products.forEach((product) => {
    // Add observer for the owner of the product to detect changes.
    this.dataProvider.getUser(product.userId).subscribe((user) => {
      product.user = user;
    });

数据截图

从我从评论中收集到的信息...如果我理解正确...

如果您想从产品数组中的 ASIN 中获取对象数组,可以执行以下操作:

asins: string[] = [];

并迭代您的产品并从那里提取 ASIN:

this.products.forEach(product => {
   this.asins.push(product.ASIN)
});

这样,您最终会得到一个包含您的 asin 的字符串数组:

["ASIN1", "ASIN2", "ASIN3"]

相关内容

  • 没有找到相关文章