AggregateQuerySnapshot class

執行匯總查詢的結果。

簽名:

export declare class AggregateQuerySnapshot<AggregateSpecType extends AggregateSpec, AppModelType = DocumentData, DbModelType extends DocumentData = DocumentData> 

屬性

屬性 修飾符 類型 說明
查詢 查詢<AppModelType、DundModelType> AggregateQuerySnapshot 中記錄的匯總作業執行的基礎查詢。
類型 (未宣告) 可明確識別這個類別執行個體的類型字串。

方法

方法 修飾符 說明
data() 傳回針對基礎查詢執行的匯總結果。傳回物件的鍵會與為匯總方法指定的 AggregateSpec 物件鍵相同,且值會是對應的匯總結果。

AggregateQuerySnapshot.query

AggregateQuerySnapshot 中記錄的匯總作業執行的基礎查詢。

簽名:

readonly query: Query<AppModelType, DbModelType>;

AggregateQuerySnapshot.type

可明確識別這個類別執行個體的類型字串。

簽名:

readonly type = "AggregateQuerySnapshot";

AggregateQuerySnapshot.data()

傳回對基礎查詢執行的匯總結果。

傳回物件的鍵會與您為匯總方法指定的 AggregateSpec 物件鍵相同,且值會成為對應的匯總結果。

簽名:

data(): AggregateSpecData<AggregateSpecType>;

傳回:

AggregateSpecData<AggregateSpecType>

對基礎查詢執行的匯總結果。