2017-10-14 212 views

回答

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.....

+0

你好,非常感謝你的答案...我試着用指示的代碼,但它返回了3個錯誤,打印在鏈接:(https://drive.google。 com/open?id = 0B14jg18TLF3USC1xc292S3FYR0k) –

+0

查看更新。 – Sampath

+0

我現在所做的更改我只拿到1個錯誤: **打字稿錯誤 屬性「GET」的類型不存在「AngularFirestoreDocument <{}>」 ** –