我正在使用@ google-cloud / firestore v0.11.2。
使用此代码:
const db = new Firestore({
projectId: serviceAccount.project_id,
credentials: {
private_key: serviceAccount.private_key,
client_email: serviceAccount.client_email
}
})
db.collection('users').doc('xxxxxxx').get()
.then(us => {
console.log('here!')
return us.data()
})
.then(console.log)
.catch(console.log)
节点进程刚结束而不等待响应。 控制台中没有打印任何内容。
什么都不会引发错误。我甚至添加了一个process.on('error'),但它从未调用过。
任何帮助都会非常感激。