gpt4 book ai didi

java - 如何使用云功能使用 firestore 中的文档名称填充应用程序中的微调器?

转载 作者:行者123 更新时间:2023-12-01 16:40:03 25 4
gpt4 key购买 nike

我有一个 firestore 项目,其中塔的名称如下

"society name"
|
|-----"tower name"
|
|-----"tower name"
and so on

我想创建一个云函数,它将社团名称作为输入并返回该社团中所有塔的名称,并将它们进一步填充到应用程序中的旋转器中。

在这种情况下找到了引用资料,所以我在这里询问。

最佳答案

检查文档我发现如何 use Firestore from cloud Functions 。您应该使用该指南来开始。在 this other post您将看到如何获取文档的名称。

结果应该是这样的:

const Firestore = require('@google-cloud/firestore');

PROJECT_ID = '[project-id]'

const firestore = new Firestore({
projectId: PROJECT_ID,
timestampsInSnapshots: true,
});

exports.main = (req, res) => {
const data = (req.body) || {};

return firestore.collection(data.society).get()
.then((querySnapshot) => {
var ids = [];
querySnapshot.forEach(doc => {
ids.push(doc.id);
});
return res.status(200).send(ids);
})
.catch(error => {
return res.status(404).send(error);
});
};

关于java - 如何使用云功能使用 firestore 中的文档名称填充应用程序中的微调器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61876298/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com