Ionic + Firebase - 实时数据库未更新视图

时间:2018-06-08 23:15:20

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

我的应用程序有一个非常奇怪的问题。为了显示实时数据库,我必须与应用程序进行交互。 2个月前我没有这个问题,信息正常显示,但是现在,我必须点击按钮或其他东西才能让视图更新。

我在这里做了一个快速的GIF:

如果您在点击<- back按钮时暂停,您就会明白我的意思.. https://i.gyazo.com/44b450aa502dc7f37e5a5feea19824c6.mp4

我不知道我做了什么来实现这一目标。

以下是我的应用程序中的代码示例:

.ts

  if(fromClick) { this.subscription.off(); }
  this.postFeed = new Array();
  this.subscription = this.database.database.ref('/posts/'+this.locationId)
  .orderByChild('score')
  .limitToLast(10);
  this.subscription.on('child_added', (snapshot) => {
        this.postFeed.push(snapshot.val())
  });

.html

  <ng-container *ngFor="let post of postFeed.reverse(); let i = index">
    <post [postData]="post"></post>
  </ng-container>

所以上面的代码过去工作得很好,但现在我必须与我的应用程序进行交互才能在屏幕上显示,即使postFeed控制台记录完全没问题。 数据会在我请求时完全显示在控制台中,但它不会在屏幕上显示。

有什么想法吗?正如我所说,它曾经工作得很好。任何帮助都会很棒!谢谢

1 个答案:

答案 0 :(得分:0)

对于遇到此问题的其他人,NgZone就是我的答案。

我导入了它:

import { NgZone } from '@angular/core';

将其添加到构造函数中:

public zone: NgZone,

然后将其包裹在我的firebase代码中:

  this.zone = new NgZone({});
  if(fromClick) { this.subscription.off(); }
  this.postFeed = new Array();
  this.subscription = this.database.database.ref('/posts/'+this.locationId)
  .orderByChild('score')
  .limitToLast(10);
  this.subscription.on('child_added', (snapshot) => {
    this.zone.run(() => {
        this.postFeed.push(snapshot.val())
     }):
  });

这对我来说非常有用。我找不到问题的实际原因,但我只是将NgZone代码包裹在我的所有firebase函数周围,它就像以前一样工作。如果其他人有更多的信息会很棒。