exports.requestPayment = functions.firestore.document('/Orders/{documentId}').onCreate((change, context) => {
console.log(change.ref);
return;
});
输出:
...
"_path": {
"segments": [
"Payments",
"Cm4rXRPnWnOpZNryWRN4"
],
...
}
函数打印出错误的集合和文档。
原来我需要在Google Cloud Functions的实际设置中更改documentPath。当你按编辑键时,你可以改变路径。