我想在本地调用Firestore函数

时间:2019-05-01 02:19:34

标签: firebase google-cloud-firestore google-cloud-functions

我不知道如何在本地执行以下代码。

export const dataFunc = functions.firestore.document('data1/{data1Id}/data2/{data2Id}').onCreate(async (snap, context) => {
  var newValue = snap.data();
});

调用:dataFunc('new_data',{auth:{uid:'***'}})

错误:参数“ documentPath”的值不是有效的资源路径。路径必须是非空字符串。

0 个答案:

没有答案