1
A
回答
1
希望你可以試試這個:
使用Cloud Firestore SDK
。
let docRef = db.collection("following").doc("your-id");
docRef.get().then((doc)=> {
if (doc.exists) {
console.log("Document data:", doc.data());
let myData=doc.data();
let isTrue= myData.boolean-property-name;//return true or false
} else {
console.log("No such document!");
}
}).catch(function(error) {
console.log("Error getting document:", error);
});
使用AngularFire2:Docs
注:
閱讀這篇文章:Google Cloud Firestore integration with Ionic and AngularFire
your-id
- 你需要通過你的doc
這裏
boolean-property-name
- 這只是一個虛擬的名字。你需要在這裏傳遞你的實際屬性名稱。在你的情況下,它就像cug.....
相關問題
- 1. 雲公司的FireStore
- 2. 如何在公司的FireStore
- 3. 公司的FireStore安全規則:文檔
- 4. 限價澄清新公司的FireStore
- 5. 公司的FireStore如何使用的GeoPoint
- 6. 延遲加載公司的FireStore
- 7. 火力地堡公司的FireStore錯誤
- 8. 雲公司的FireStore數據庫結構
- 9. 在火力雲公司的FireStore
- 10. 從公司的FireStore斯威夫特4的iOS檢索文檔最近ID
- 11. 檢索公司由多位
- 12. 結構數據庫公司的FireStore帖子
- 13. 公司的FireStore排序依據(子集合)
- 14. 雲公司的FireStore字符串> =字符串
- 15. 在陣列刪除指數公司的FireStore
- 16. 無法檢索公司首選項
- 17. Perforce公司無法檢索數據
- 18. Linkedin API檢索公司詳細信息
- 19. PHP和REST API - 檢索公司更新
- 20. 公司的FireStore:從收集查詢所有文檔
- 21. 檢索計算場的公式?
- 22. 將在公司的FireStore和貨物的做法
- 23. 雲公司的FireStore最小的部署目標
- 24. 我如何通過最新的與公司的FireStore查詢
- 25. 沒有得到自定義文件中公司的FireStore
- 26. 公司的FireStore規則時數據不存在
- 27. 如何獲得'雲功能shell`與公司的FireStore工作
- 28. 雲功能與公司的FireStore錯誤「已逾期」
- 29. 管理網上存在於雲計算公司的FireStore
- 30. 如何建立雲公司的FireStore靜態託管網站
你好,非常感謝你的答案...我試着用指示的代碼,但它返回了3個錯誤,打印在鏈接:(https://drive.google。 com/open?id = 0B14jg18TLF3USC1xc292S3FYR0k) –
查看更新。 – Sampath
我現在所做的更改我只拿到1個錯誤: **打字稿錯誤 屬性「GET」的類型不存在「AngularFirestoreDocument <{}>」 ** –