来自这个
export class firebaseComponent {
public count: any;
ngOnInit() {
var ref = this.db.database.ref('/approval');
ref.limitToLast(1).on('child_added', function( snapShot ) {
this.count = snapShot.myValue; // Doesn't work
}
}
我无法使用this.count
因为在Firebase中功能不知道什么是this.count
我该如何使用它。我真的希望从Firebase获得价值,以便在HTML中显示{{count}}