TypeError:Object(...)不是函数,正在从Firebase调用数据

时间:2018-09-11 00:46:33

标签: angular typescript ionic-framework firebase-realtime-database ionic3

我的addevent.ts:

export class EventPage {

eventDetail = {} as EventDetail;

eventDetailRef$: AngularFireList<EventDetail>;

constructor(public navCtrl: NavController, public navParams: NavParams, 
private database: AngularFireDatabase) {
    this.eventDetailRef$ = this.database.list('event-list');
 }

addEvent( eventDetail: EventDetail) {

  this.eventDetailRef$.push({
  eventName: this.eventDetail.eventName,
  eventDesc: this.eventDetail.eventDesc,
  lat: Number(this.eventDetail.lat),
  lgt: Number(this.eventDetail.lgt)
  });

  this.eventDetail = {} as EventDetail;

  this.navCtrl.pop(); 

  }

}

我的showevent.ts:

newEventListRef$ : AngularFireList<EventDetail>;
newEventList$: Observable<EventDetail[]>;

constructor(public navCtrl: NavController, private database: 
AngularFireDatabase) {
this.tabs=["New", "Upcoming"];
this.newEventListRef$ = this.database.list<EventDetail>('event-list');
this.newEventList$ = this.newEventListRef$.valueChanges();
}

我的showevent.html

<ion-list>
    <ion-item *ngFor="let new of newEventList$ | async">
      <h2>{{new.eventName}}</h2>
      <h4>{{new.eventDesc}}</h4>
      <h6>{{new.lat}}</h6>
      <h6>{{new.lgt}}</h6>
    </ion-item>
  </ion-list>

问题:TypeError:Object(...)不是函数

我无法从firebase调用数据,VScode中没有红线或错误,我对ionic 3非常陌生,如果我犯了最简单的错误,请原谅。

堆栈跟踪:

TypeError: Object(...) is not a function
    at SwitchMapSubscriber.project (http://localhost:8100/build/vendor.js:78721:76)
    at SwitchMapSubscriber._next (http://localhost:8100/build/vendor.js:62701:27)
    at SwitchMapSubscriber.Subscriber.next (http://localhost:8100/build/vendor.js:20750:18)
    at RefCountSubscriber.Subscriber._next (http://localhost:8100/build/vendor.js:20786:26)
    at RefCountSubscriber.Subscriber.next (http://localhost:8100/build/vendor.js:20750:18)
    at Subject.next (http://localhost:8100/build/vendor.js:23237:25)
    at ConnectableSubscriber.Subscriber._next (http://localhost:8100/build/vendor.js:20786:26)
    at ConnectableSubscriber.Subscriber.next (http://localhost:8100/build/vendor.js:20750:18)
    at Notification.observe (http://localhost:8100/build/vendor.js:52585:50)
    at AsyncAction.DelaySubscriber.dispatch (http://localhost:8100/build/vendor.js:81001:40)

1 个答案:

答案 0 :(得分:1)

请在项目中升级rxjs,并且还必须包括rxjs-compat。尝试执行以下命令:

npm i rxjs@6 rxjs-compat@6 promise-polyfill --save

此外,在检索列表数据时,还必须使用subscribe,如下所示:

this.database.list<EventDetail>('event-list').valueChanges().subscribe((eventData) => 
{ 
  console.log("eventDetails data", eventData);
},(err)=>{
   console.log("Error while retrieving eventDetails : ", err);
});