这个例子:
增加集合的函数VIEWCOUNT。
不需要return什么。也没有必要await打电话firestore...update()。
export const onCall_updateViewCount = functions.https.onCall((data, context) => {
const { id } = data;
const VIEWCOUNT = COLLECTIONS.VIEWCOUNT;
admin.firestore().collection(VIEWCOUNT).doc(VIEWCOUNT).update({
[id]: admin.firestore.FieldValue.increment(1)
});
return;
});
终止此功能的正确方法是什么?以 void 结束可以吗return?
虚空有return;必要吗?如果我不返回任何内容,它会继续运行直到超时吗?就像它在onRequest函数上所做的那样?
撒科打诨
相关分类