我一直在尝试更新Firebase文档中的特定字段,但是由于某种原因,即使触发了云功能并在文档上执行了上载,它也没有上载,这些字段的值从未上载。
只要在“客户详细信息”中更新了任何字段,触发器功能就会起作用,然后它将获取新的字段值。 然后,在上载的文档上创建一个引用,以访问要迭代的数组。
然后将文档和文档ID传递给一个函数,该函数迭代每个更新的文档中的键:值对,然后使用不同文档中的相同键更新字段。
一切正常,但字段值从未更新。
exports.rebuildFormTriggerClientDetails = functions.firestore.
document('clientDetails/{details}').onUpdate((change) => {
const afterDoc = change.after.data();
const documentId = change.after.id
if (afterDoc)
{
let docUsers = db.collection("clientDetails").doc(documentId);
let caseArray: Array<string>;
caseArray = afterDoc.CaseRefArray;
for (var valCase of caseArray) {
console.log(valCase);
console.log(documentId);
createObjectDocument(docUsers,valCase);
}
}
return Promise
});
function createObjectDocument(document: any, caseNumber: String)
{
document.get().then(function(doc: any) {
if (doc.exists) {
console.log("Document data:", doc.data());
for (let [key, value] of Object.entries(doc.data())) {
console.log(`${key}: ${value}`);
if (key != "CaseRefArray")
{
db.collection("casesToExport").doc(caseNumber).update({key : value });
}
}
} else {
// doc.data() will be undefined in this case
console.log("No such document!");
}
}).catch(function(error: any) {
console.log("Error getting document:", error);
});
[1]: https://i.stack.imgur.com/duhkq.png
答案 0 :(得分:1)
尝试解决您的云功能,而不要返回承诺。
artifacts:
reports:
junit: <testing-repo>/results/results.xml
expire_in: 1 week