gpt4 book ai didi

javascript - Cloud Functions 错误 : Function returned undefined, 预期的 Promise 或值,以及 TypeError:无法读取未定义的属性 'First_Name'

转载 作者:行者123 更新时间:2023-11-30 20:08:23 25 4
gpt4 key购买 nike

我正在编写一个简单的云函数,它应该在创建新用户时在特定集合中创建一个具有特定名称的新文档。我已经尝试了多种编码方法,我想我已经想出了我认为最接近工作代码的方法,因为我可以单独使用它。这是有问题的代码:

var functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp(functions.config().firebase);

exports.emailUserRegistration = functions.auth.user().onCreate((user) => {



admin.firestore().collection('UnauthenticatedUsers').doc(user.email).get()
.then(snapshot => {

var userObject = {
Email: user.email,
First_Name: snapshot.data().First_Name,
Last_Name:snapshot.data().Last_Name,
Password:snapshot.data().Password,
Phone_Number:snapshot.data().Phone_Number,
Address:snapshot.data().Address
};
return admin.firestore().collection('Users').doc(user.uid).set(userObject);
})
.catch(error => {
//Handle the error
console.log('[YAX]',error)
})

});

出现的问题如下:

1) 返回的函数未定义,需要 Promise 或值。我不明白为什么这是一个问题,因为 set 方法返回一个 Promise。根据我看过的各种教程,包括来自 Firebase 的官方 YouTube channel 和其他独立程序员的 YouTube 用户,如果一个函数返回一个 Promise,您可以简单地返回该函数。

2) 类型错误:无法读取未定义的属性“First_Name”。我完全不知道为什么当我实际上将它建议为 snapshot.data() 之后的可能变量时代码无法读取“First_Name”。在 Visual Studio Code 中。

3) 标题中没有提到这一点,但出于某种原因,尽管出现了上述两个错误,函数执行仍返回状态:'ok'。

我是一名 Android 开发新手,使用 Cloud Functions 是我从 Firebase 的客户支持那里得到的建议和解决方案,但在询问他们这个特定问题时,他们还没有回复我。请记住,我是 Node.js 的一个更好的初学者(在这个项目之前我从未做过任何事情)并且,除了希望我的代码能够工作之外,我绝对想知道这里发生了什么,或者更简单的术语 我想了解代码做了什么,以及为什么它没有按照我的逻辑所说的去做。

如果有人需要更多背景信息,我将非常乐意提供。

最佳答案

第一个问题的答案

var functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp(functions.config().firebase);

exports.emailUserRegistration = functions.auth.user().onCreate((user) => {


// return this function
return admin.firestore().collection('UnauthenticatedUsers').doc(user.email).get()
.then(snapshot => {

var userObject = {
Email: user.email,
First_Name: snapshot.data().First_Name,
Last_Name:snapshot.data().Last_Name,
Password:snapshot.data().Password,
Phone_Number:snapshot.data().Phone_Number,
Address:snapshot.data().Address
};
return admin.firestore().collection('Users').doc(user.uid).set(userObject);
})
.catch(error => {
//Handle the error
console.log('[YAX]',error)
})
});

第二个问题的答案最好上传一张 UnauthenticatedUsers 文档的照片。

 First_Name: snapshot.data().First_Name // this should be same as in your document and it is case sensitive also please check with your document.

希望这对你有帮助......

关于javascript - Cloud Functions 错误 : Function returned undefined, 预期的 Promise 或值,以及 TypeError:无法读取未定义的属性 'First_Name',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52636764/

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