Mah*_*ous 4 javascript node.js firebase firebase-cloud-messaging google-cloud-firestore
我正在尝试编写一个函数,该函数在用户获得新评论并发送通知时触发。评论存储在/Users/{userID}/Notifications/{notificationID}. 用户将他们的设备通知令牌保存到/users/{userID}
这是整个index.js文件
'use strict';
const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp();
exports.sendNotification = functions.firestore.document('Users/{userID}/Notifications/{notificationID}').onWrite((data, context) => {
const to_user_id = context.params.userID;
const notification_id = context.params.notificationID;
return admin.firestore().collection('Users').doc(to_user_id).collection('Notifications').doc(notification_id).get.then(queryResult => {
const from_user_id = queryResult.data().commentUID;
const from_user_data = admin.firestore().collection('Users').doc(from_user_id).get();
const to_user_data = admin.firestore().collection('Users').doc(to_user_id).get();
return Promise.all([from_user_data, to_user_data]).then(result => {
const from_name = result[0].data().name;
const to_name = result[1].data().name;
return console.log("FROM: " + from_name + " TO: " + to_name);
});
});
});
Run Code Online (Sandbox Code Playgroud)
这是package.json文件。一切都是最新的
{
"name": "functions",
"description": "Cloud Functions for Firebase",
"scripts": {
"lint": "eslint .",
"serve": "firebase serve --only functions",
"shell": "firebase experimental:functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"dependencies": {
"firebase-admin": "~5.11.0",
"firebase-functions": "^1.0.0"
},
"devDependencies": {
"eslint": "^4.12.0",
"eslint-plugin-promise": "^3.6.0"
},
"private": true
}
Run Code Online (Sandbox Code Playgroud)
Firebase 给出以下错误:
TypeError: admin.firestore(...).collection(...).doc(...).collection(...).doc(...).get.then is not a function
at exports.sendNotification.functions.firestore.document.onWrite (/user_code/index.js:19:119)
at Object.<anonymous> (/user_code/node_modules/firebase-functions/lib/cloud-functions.js:112:27)
at next (native)
at /user_code/node_modules/firebase-functions/lib/cloud-functions.js:28:71
at __awaiter (/user_code/node_modules/firebase-functions/lib/cloud-functions.js:24:12)
at cloudFunction (/user_code/node_modules/firebase-functions/lib/cloud-functions.js:82:36)
at /var/tmp/worker/worker.js:700:26
at process._tickDomainCallback (internal/process/next_tick.js:135:7)
Run Code Online (Sandbox Code Playgroud)
改变这个:
admin.firestore().collection('Users').doc(to_user_id).collection('Notifications').doc(notification_id).get.then(queryResult => {
Run Code Online (Sandbox Code Playgroud)
进入这个:
admin.firestore().collection('Users').doc(to_user_id).collection('Notifications').doc(notification_id).get().then(queryResult => {
Run Code Online (Sandbox Code Playgroud)
get()返回包含非空 firebase.firestore.DocumentSnapshot 的承诺读取由此 DocumentReference 引用的文档。
更多信息在这里:
https://firebase.google.com/docs/reference/js/firebase.firestore.DocumentReference#get
| 归档时间: |
|
| 查看次数: |
7004 次 |
| 最近记录: |