firebase函数:shell onWrite属性未定义

时间:2019-06-13 19:58:56

标签: firebase google-cloud-functions

我正在尝试在本地测试我的云功能。我正在使用命令firebase functions:shell,该命令成功启动了模拟器。我的index.ts中具有以下云功能:

export const stripeCharge = functions.region('europe-west1').database
    .ref('/payments/{userId}/{paymentId}')
    .onWrite(async (change, context) => {
        someCode;
});

我了解到,您应该通过以下方式(https://firebase.google.com/docs/functions/local-shell)调用onWrite firestore函数:

stripeCharge({before: "oldData", after: "newData"})

但是,这将导致以下错误:

'Successfully invoked function.'
firebase > !  TypeError: Cannot read property 'eventType' of undefined
    at cloudFunction (C:\Users\Jesper\intergun\functions\node_modules\firebase-functions\lib\cloud-functions.js:80:40)
    at Run (C:\Users\Jesper\AppData\Roaming\nvm\v8.16.0\node_modules\firebase-tools\lib\emulator\functionsEmulatorRuntime.js:458:20)
    at C:\Users\Jesper\AppData\Roaming\nvm\v8.16.0\node_modules\firebase-tools\lib\emulator\functionsEmulatorRuntime.js:442:19
    at Generator.next (<anonymous>)
    at C:\Users\Jesper\AppData\Roaming\nvm\v8.16.0\node_modules\firebase-tools\lib\emulator\functionsEmulatorRuntime.js:7:71
    at new Promise (<anonymous>)
    at __awaiter (C:\Users\Jesper\AppData\Roaming\nvm\v8.16.0\node_modules\firebase-tools\lib\emulator\functionsEmulatorRuntime.js:3:12)
    at Run (C:\Users\Jesper\AppData\Roaming\nvm\v8.16.0\node_modules\firebase-tools\lib\emulator\functionsEmulatorRuntime.js:435:12)
    at C:\Users\Jesper\AppData\Roaming\nvm\v8.16.0\node_modules\firebase-tools\lib\emulator\functionsEmulatorRuntime.js:457:15
    at Generator.next (<anonymous>)
!  Your function was killed because it raised an unhandled error.

该错误发生在其他文件中,我不确定为什么。我想念什么?

编辑:我的package.json

{
  "name": "functions",
  "scripts": {
    "lint": "tslint --project tsconfig.json",
    "build": "tsc",
    "serve": "npm run build && firebase serve --only functions",
    "shell": "npm run build && firebase functions:shell",
    "start": "npm run shell",
    "deploy": "firebase deploy --only functions",
    "logs": "firebase functions:log"
  },
  "engines": {
    "node": "8"
  },
  "main": "lib/index.js",
  "dependencies": {
    "@google-cloud/storage": "^2.5.0",
    "@types/fs-extra": "^7.0.0",
    "firebase-admin": "^8.1.0",
    "firebase-functions": "^3.0.1",
    "fs-extra": "^8.0.1",
    "mailgun-js": "^0.22.0",
    "sharp": "^0.22.1",
    "stripe": "^7.1.0"
  },
  "devDependencies": {
    "@types/sharp": "^0.22.2",
    "@types/stripe": "^6.30.0",
    "firebase-functions-test": "^0.1.6",
    "tslint": "^5.12.0",
    "typescript": "^3.2.2"
  },
  "private": true
}

1 个答案:

答案 0 :(得分:1)

复制此代码后,我发现this thread似乎存在此问题的空缺。

类似的设置对于Firestore来说很好用,但问题似乎出在RTDB上,我想我们必须等到他们解决它,抱歉:(