我正在使用.net,Javascript和Visual Studio 2017.当我从脚本代码中运行下面的代码时,会打印出来:
V5hzmxxxxxxxGr6VyxxxxxtUA3 => <不可用>
以下是代码:
var db = firebase.firestore();
db.collection("users").get().then(function (querySnapshot) {
querySnapshot.forEach(function (doc) {
console.log(doc.id, " => ", doc.data());
});
});
doc.id
是fireauth ID。我检查了数据库,那里肯定有一份文件。所以我想知道为什么它说不可用。
感谢。