我在firebase-firestore上进行查询,但不返回任何数据 我的代码是。 在这里打印所有类别,并在其中获取每个类别的ID:
<div class="categorias" >
<a mat-list-item>Categorias</a>
<a mat-list-item *ngFor="let categoria of categorias | async" routerLink="categorias/{{categoria.id}}">
<mat-icon>category</mat-icon>
<span class="sidenav-caption">{{categoria.nome}}</span>
</a>
</div>
这是我的查询,没有错误,但没有数据:
produtos: Observable<Produtos[]>;
produtosCollection: AngularFirestoreCollection<Produtos>;
constructor(
private router: Router,
private route: ActivatedRoute,
private produtoService: ProdutosService,
private afs: AngularFirestore
) { }
ngOnInit() {
const categoria = this.route.snapshot.paramMap.get('id');
this.produtosCollection = this.afs.collection('produtos', ref => {
return ref.where('categoria', '==', categoria);
});
this.produtos = this.produtosCollection.valueChanges();
}
只有标签h1的内容正在准备中,其余的都没有:
<h1>Test </h1>
<div *ngFor="let produto of produtos | async">
<p>{{produto.descricao}}</p>
</div>