getDoc
Reads the document referred to by this DocumentReference
.
Note: getDoc()
attempts to provide up-to-date data when possible by waiting
for data from the server, but it may return cached data or fail if you are
offline and the server cannot be reached. To specify this behavior, invoke
getDocFromCache or getDocFromServer.
function getDoc<AppModelType, DbModelType extends DocumentData>(reference: DocumentReference<AppModelType, DbModelType>): Promise<DocumentSnapshot<AppModelType, DbModelType>>;
§
getDoc<AppModelType, DbModelType extends DocumentData>(reference: DocumentReference<AppModelType, DbModelType>): Promise<DocumentSnapshot<AppModelType, DbModelType>>
[src]§Parameters
§
reference: DocumentReference<AppModelType, DbModelType>
[src]- The reference of the document to fetch.
§Return Type
§
Promise<DocumentSnapshot<AppModelType, DbModelType>>
[src]A Promise resolved with a DocumentSnapshot
containing the
current document contents.