首页 > 解决方案 > 键入'AngularFireAction>[]' 不可分配给类型 'Product[]'

问题描述

所以我正在学习这门课程,它使用的是 angularfire2 的先前版本(4.0),我使用的是最新版本(5.0),我的代码遇到了这个问题。

我收到此错误,类型“AngularFireAction>[]”不可分配给类型“Product[]”。

export class AdminProductsComponent implements OnInit, OnDestroy {
products: Product[];
filteredProducts: any[];
subscription: Subscription;
tableResource: DataTableResource<Product>;
items: Product[];
itemCount: number;

constructor(private productService: ProductService) {
 this.subscription = this.productService.getAll().subscribe(products => {
  this.filteredProducts = this.products = products;
  this.initializeTable(products);
 });

}

private initializeTable(products: Product[]){
 this.tableResource = new DataTableResource(products);
  this.tableResource.query({ offset: 0})
    .then(items => this.items = items);
  this.tableResource.count()
    .then(count => this.itemCount = count);
}

reloadItems(params){ 
 if(!this.tableResource) return;
 this.tableResource.query(params)
    .then(items => this.items = items);
}

filter(query: string){
   this.filteredProducts = (query) ?
   this.products.filter(p => 
   p.title.toLowerCase().includes(query.toLowerCase())) :
   this.products; 
}

ngOnDestroy(){
  this.subscription.unsubscribe();
}


}

这是产品服务的代码

export class ProductService {

constructor(private db: AngularFireDatabase) { }

create(product){
  return this.db.list('/products').push(product);
}

getAll(){
  return this.db.list('/products').snapshotChanges(); 
}

get(productId){
  return this.db.object('/products/' + productId);
}

update(productId, product){
  return this.db.object('/products/' + productId).update(product);
}

delete(productId){
  return this.db.object('/products/' + productId).remove(); 
}

}

标签: angularfirebaseangularfire2angularfire

解决方案


您的服务中的getAll()方法正在返回snapshotChanges()。这是一个Observable<AngularFireAction<DatabaseSnapshot<{}>>[]>并且您正试图将其传递给initializeTable(products: Product[]). 这就是错误所说的。

为了解决这个问题,您需要将 映射.snapshotChanges()到您的Product[]喜欢的位置:

getAll(): Observable<Product[]> {
    return this.db.list<Product>('/products')
        .snapshotChanges()
        .pipe(
            map(changes =>
                changes.map(c => {
                    const data = c.payload.val() as Product;
                    const id = c.payload.key;
                    return { id, ...data };
                })
            )
        );
}

推荐阅读