gpt4 book ai didi

javascript - TypeError : admin. firestore(...).collection(...).doc(...).collection(...).doc(...).get.then 不是函数

转载 作者:搜寻专家 更新时间:2023-11-01 00:28:11 25 4
gpt4 key购买 nike

我正在尝试编写一个函数,该函数在用户收到新评论并发送通知时触发。评论存储在 /Users/{userID}/Notifications/{notificationID} 中。用户将他们的设备通知 token 保存到 /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);

});

});

});

这是 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
}

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)

最佳答案

改变这个:

admin.firestore().collection('Users').doc(to_user_id).collection('Notifications').doc(notification_id).get.then(queryResult => {

进入这个:

admin.firestore().collection('Users').doc(to_user_id).collection('Notifications').doc(notification_id).get().then(queryResult => {

get() returns Promise containing non-null firebase.firestore.DocumentSnapshot

Reads the document referred to by this DocumentReference.

更多信息在这里:

https://firebase.google.com/docs/reference/js/firebase.firestore.DocumentReference#get

关于javascript - TypeError : admin. firestore(...).collection(...).doc(...).collection(...).doc(...).get.then 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49711435/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com