我有这个查询:
this.firestore.collection('name', ref => ref.limit(1)).get().subscribe(x => {
console.log(x);
});
那没有返回任何数据
仅出于测试目的,我将其更改为a,它可以工作:
this.firestore.collection('name', ref => ref.limit(1)).valueChanges().subscribe(x => {
console.log(x);
});
但是我想使用.get()
,有什么想法吗?
答案 0 :(得分:0)
问题是.subscibe
方法处理Observable
。它类似于Promise中的类似机制,但有所不同。(reference)
根据this reference valueChanges()
:
- 返回文档数据的Observable。所有快照 元数据被剥离。此方法仅提供数据
get()
使用Promise机制进行快照时。因此,您不能将subscribe
与get一起使用。
我希望它将对您有帮助!