【发布时间】:2019-10-06 21:28:32
【问题描述】:
我已经创建了一个测试项目并确实根据文档配置了所有内容,但是当我运行该项目时,它没有按预期工作,在写这个问题之前,我做了谷歌并发现了一些重复的问题,但场景不同在每一个中,所以我假设这是不是重复的问题。
这是我的终端命令和输出:
functions ➤ npm run serve
> functions@ serve /Users/codecrash/Developments/crm-firestore/functions
> firebase serve --only functions
✔ functions: Using node@8 from host.
✔ functions: Emulator started at http://localhost:5000
i functions: Watching "/Users/codecrash/Developments/crm-firestore/functions" for Cloud Functions...
i Your code has been provided a "firebase-admin" instance.
i functions: HTTP trigger initialized at http://localhost:5000/demo-crm/us-central1/helloWorld
Ignoring trigger "onWrite" because the Cloud Firestore emulator is not running.
Ignoring trigger "onUpdate" because the Cloud Firestore emulator is not running.
i functions: Beginning execution of "helloWorld"
i Your code has been provided a "firebase-admin" instance.
i functions: Finished "helloWorld" in ~1s
我不确定,怎么了。 helloWorld 工作正常,但 onUpdate 和 onWrite 却不行。
我也尝试过运行以下命令,
functions ➤ firebase emulators:start
i Starting emulators: ["functions","firestore"]
✔ functions: Using node@8 from host.
✔ functions: Emulator started at http://localhost:5001
i firestore: Logging to firestore-debug.log
✔ firestore: Emulator started at http://127.0.0.1:8080
i firestore: For testing set FIREBASE_FIRESTORE_EMULATOR_ADDRESS=127.0.0.1:8080
i functions: Watching "/Users/codecrash/Developments/crm-firestore/functions" for Cloud Functions...
i Your code has been provided a "firebase-admin" instance.
i functions: HTTP trigger initialized at http://localhost:5001/demo-crm/us-central1/helloWorld
i functions: Setting up Cloud Firestore trigger "onWrite"
✔ functions: Trigger "onWrite" has been acknowledged by the Cloud Firestore emulator.
i functions: Setting up Cloud Firestore trigger "onUpdate"
✔ functions: Trigger "onUpdate" has been acknowledged by the Cloud Firestore emulator.
i functions: Beginning execution of "helloWorld"
i Your code has been provided a "firebase-admin" instance.
i functions: Finished "helloWorld" in ~1s
但 onUpdate 或 onWrite 触发器仍然不走运。 不知道我做错了什么。
这是我的代码库:
const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp({});
exports.helloWorld = functions.https.onRequest((request, response) => {
response.send("Hello from Firebase!");
});
exports.onWrite = functions.firestore.document('users/{userId}').onWrite((change, context) => {
const document = change.after.exists ? change.after.data() : null;
const oldDocument = change.before.data();
// perform desired operations ...
console.log('local: onWrite change:', change);
console.log('local: onWrite context:', context);
console.log('local: onWrite document:', document);
console.log('local: onWrite oldDocument:', oldDocument);
return Promise.resolve();
});
exports.onUpdate = functions.firestore.document('users/{userId}').onUpdate((change, context) => {
const document = change.after.exists ? change.after.data() : null;
const oldDocument = change.before.data();
// perform desired operations ...
console.log('local: onUpdate change:', change);
console.log('local: onUpdate context:', context);
console.log('local: onUpdate document:', document);
console.log('local: onUpdate oldDocument:', oldDocument);
return new Promise().then(() => {
return Promise.resolve();
}).catch((error) => {
return Promise.reject('error:code_crash');
});
});
我在 env 变量中添加了键:
GOOGLE_APPLICATION_CREDENTIALS="/Users/codecrash/Developments/crm-firestore/functions/certificate.json"
FIREBASE_CONFIG="/Users/codecrash/Developments/crm-firestore/functions/certificate.json"
注意:当我将其部署在云功能上时,它运行良好。
谢谢。
【问题讨论】:
-
您使用的是哪个版本的 Firebase CLI?运行
firebase --version。 -
@DougStevenson 它是 6.10.0
-
您找到解决方案了吗?我在这里运行同样的问题
-
这里也一样,请帮忙
-
与 firebase --version 7.1.0 相同。它也不起作用。
标签: javascript firebase google-cloud-firestore google-cloud-functions firebase-tools