作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试从 Cloud Firestore 检索数据以最终在 GraphQL 服务器中使用,但目前我只是返回 JSON 进行测试。我正在使用以下代码访问 Firestore,但似乎没有取回任何数据。我知道该函数可以正常工作,因为“开始测试”和“最终测试推送”按预期出现在 JSON 响应中。
我也尝试过使用 Admin SDK 说明,但无济于事。有人能发现我在这里做错了什么吗?
import * as admin from "firebase-admin"
import * as functions from "firebase-functions"
admin.initializeApp(functions.config().firebase)
const db = admin.firestore()
const authors = [{ key: "start test" }]
db.collection("authors")
.get()
.then(snapshot => {
snapshot.forEach(doc => {
const data = {
id: doc.id,
firstName: doc.firstName,
lastName: doc.lastName
}
authors.push(data)
authors.push({ key: "test in loop" })
})
})
authors.push({ key: "final test push" })
export default authors
非常感谢!
编辑:我应该注意,这是来自一个单独的 getter 文件。云函数本身在其他地方并且运行正常。
编辑#2:云函数定义
import authorsArray from "./firestore"
const testServer = express()
testServer.get("*", (req, res) => {
res.setHeader("Content-Type", "application/json")
res.send(JSON.stringify({ data: authorsArray }))
})
const test = https.onRequest(testServer)
最佳答案
尝试更改代码如下;由于快照数据是 doc.data()
且 id 是 doc.id
db.collection("authors")
.get()
.then(snapshot => {
snapshot.forEach(doc => {
const data = {
id: doc.id,
firstName: doc.data().firstName,
lastName: doc.data().lastName
}
authors.push(data)
authors.push({ key: "test in loop" })
})
供您引用,请查看 link
关于firebase - 如何从 Cloud Function 访问 Cloud Firestore?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48241126/
我是一名优秀的程序员,十分优秀!