【发布时间】:2018-08-14 08:57:52
【问题描述】:
我正在开发一个 Angular Firebase 项目,我需要在其中过滤我的数据库并获取键值。目前我在我的服务代码中使用 valueChanges() 方法(在 getUnreadBooks 和 getFavoriteBooks 方法中,如下所示)来获取数据并过滤它。但是当我尝试在模板文件中获取键值时,它给了我键值作为“未定义”。我尝试使用 snapshotChanges() 方法,但无法解决如何使用它来获取键值以及过滤数据。下面分别是我的 Angular FirebaseService、home.component.ts(我在其中注入我的服务代码)和 home.component.html(模板文件)代码:
import { Injectable } from '@angular/core';
import { AngularFireDatabase } from 'angularfire2/database';
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/operator/map';
@Injectable()
export class FirebaseService {
books: Observable<any[]>;
unreadBooks;
favoriteBooks;
constructor(private db: AngularFireDatabase) {}
getBooks(){
this.books = this.db.list('/books').valueChanges() as Observable<any[]>;
return this.books;
}
getFavoriteBooks(){
this.favoriteBooks = this.db.list('/books').valueChanges() as Observable<any[]>;
this.favoriteBooks = this.favoriteBooks.map(books => {
const topRatedBooks = books.filter(item => item.rate>4);
return topRatedBooks;
})
return this.favoriteBooks;
}
getUnreadBooks(){
this.unreadBooks = this.db.list('/books').valueChanges() as Observable<any[]>;
this.unreadBooks = this.unreadBooks.map(books => {
const ub = books.filter(item => item.dateread == null);
return ub;
})
return this.unreadBooks;
}
}
Home.Component.ts 文件 =>
import { Component, OnInit } from '@angular/core';
import { FirebaseService } from '../../services/firebase.service';
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.css']
})
export class HomeComponent implements OnInit {
//favorite Books
favoriteBooks: any;
unreadBooks: any;
constructor(private firebaseService: FirebaseService) { }
ngOnInit() {
this.firebaseService.getFavoriteBooks()
.subscribe(favBooks => {
this.favoriteBooks = favBooks;
console.log(this.favoriteBooks);
})
this.firebaseService.getUnreadBooks()
.subscribe(ubBooks => {
this.unreadBooks = ubBooks;
console.log('Unread Books:', this.unreadBooks);
})
}
}
Home.component.html 文件 =>
<mat-toolbar>
My Top Rated Books
</mat-toolbar>
<mat-grid-list cols="3">
<mat-grid-tile *ngFor="let book of favoriteBooks">
<mat-card>
<mat-card-header>
<mat-card-title>
<h4>{{book.title}}</h4>
</mat-card-title>
</mat-card-header>
<img mat-card-image src="{{book.imageUrl}}" alt="{{book.title}}">
<mat-card-actions>
<button mat-button mat-raised-button class="detailsButton" [routerLink]="['/book/'+book.$key]">
<i class="material-icons">visibility</i>Book Details</button>
<button mat-button mat-raised-button class="editButton" [routerLink]="['/editbook/'+book.$key]">
<i class="material-icons">mode_edit</i>Edit Book</button>
</mat-card-actions>
</mat-card>
</mat-grid-tile>
</mat-grid-list>
<mat-toolbar>
Books I have not read yet
</mat-toolbar>
<mat-grid-list cols="3">
<mat-grid-tile *ngFor="let book of unreadBooks">
<mat-card>
<mat-card-header>
<mat-card-title>
<h4>{{book.title}}</h4>
</mat-card-title>
</mat-card-header>
<img mat-card-image src="{{book.imageUrl}}" alt="{{book.title}}">
<mat-card-actions>
<button mat-button mat-raised-button class="detailsButton" [routerLink]="['/book/'+book.$key]">
<i class="material-icons">visibility</i>Book Details</button>
<button mat-button mat-raised-button class="editButton" [routerLink]="['/editbook/'+book.$key]">
<i class="material-icons">mode_edit</i>Edit Book</button>
</mat-card-actions>
</mat-card>
</mat-grid-tile>
</mat-grid-list>
【问题讨论】:
-
你用
snapshotChanges()做了什么?检查这个例子app -
我尝试在 getFavoriteBooks() 方法(在 FirebaseService File 中)中使用 snapshotChanges() 代替 valueChanges() 来获取键值。但是在使用 snapshotChanges() 时无法解决如何在内部应用过滤器方法。我需要过滤我的书籍以及获取过滤书籍的键值。我怎么能这样做?
标签: angular firebase firebase-realtime-database angularfire2