ngFor inside ngFor导致错误

时间:2017-08-04 03:30:26

标签: javascript firebase ionic-framework firebase-realtime-database ionic2

我有一个firebase json对象,它由一些部分组成。部分内部也是剖面线程。我正在尝试迭代这些部分,然后是线程。问题是我收到此错误

InvalidPipeArgument:管道'AsyncPipe'的'[object Object]'

当我为线程添加第二个* ngFor时

这是我的HTML

<div *ngFor="let section of forumSections | async">
  <div>Header title: {{section.sectionTitle}}</div>

<div *ngFor="let thread of section.sectionThreads | async">
  <div>Thread title: {{thread.title}}</div>
</div>

我的firebase数据库中的JSON对象

 "forum" : {
"sections" : {
  "Y6ML8AA9V5RB2sKFmKndnHFqRw23" : {
    "sectionThreads" : {
      "-zqehRPSbalaburpm2dW" : {
        "description" : "Sup ladies",
        "title" : "elo mm9"
      },
      "-zqehRPSbalajYGfm2dW" : {
        "description" : "Sup boi",
        "title" : "elo m8"
      }
    },
    "sectionTitle" : "Official"
  }
}

}

我错过了什么吗?感谢任何帮助。谢谢。

更新

forum.ts

    import {Component, OnInit} from '@angular/core';
import {IonicPage} from 'ionic-angular';
import {FirebaseListObservable} from "angularfire2";
import {ForumServiceProvider} from "../../providers/forum-service/forum-service";

@IonicPage()
@Component({
  selector: 'page-forum',
  templateUrl: 'forum.html',
})

export class ForumPage implements OnInit {

  forumSections: FirebaseListObservable<any>;

  constructor(public forumService: ForumServiceProvider) {
  }

  ngOnInit() {
    this.loadForumData();
  }

  loadForumData() {
    this.forumSections = this.forumService.getInitialSections();
  }

}

论坛服务

import {Injectable} from '@angular/core';
import 'rxjs/add/operator/map';
import {AngularFire, FirebaseListObservable} from "angularfire2";

@Injectable()
export class ForumServiceProvider {

  constructor(public af: AngularFire) {
  }

  /**
   * Get the forums front facing sections
   * @returns {FirebaseListObservable<any>}
   */
  getInitialSections(): FirebaseListObservable<any> {
    return this.af.database.list('/forum/sections');
  }

}

2 个答案:

答案 0 :(得分:0)

异步管道需要一个Observable,确保你的响应是Observable,因为你使用的是firebase,它应该是FirebaseListObservable。

在你的情况下,我想如果你删除第二个ng中的| async它会解决你的问题,因为它是一个数组。

答案 1 :(得分:0)

从您的评论中看起来,您的第一个ngfor应该可以工作,第二个不会工作,因为它不再是可观察的,也不是数组。 所以你需要将第二个转换为数组,也删除第二个中的asyc管道。

&#13;
&#13;
this.af.database.list('/forum/sections/')
.map(sections=>sections
              .map(section=>Object.keys(section.sectionThreads)
                            .map(key=>section.sectionThreads[key])))
&#13;
&#13;
&#13;

我还没有测试过,而且它不是打字稿,你可能需要进行一些转换