gpt4 book ai didi

javascript - 在 Firebase 中,如何在 Auth 中更新用户的 displayName 字段?

转载 作者:数据小太阳 更新时间:2023-10-29 03:51:50 25 4
gpt4 key购买 nike

<分区>

我目前有一个创建用户帐户的功能。我也希望能够添加用户名字段,但我似乎无法弄清楚如何更新它。我在 Google 控制台中注意到,有一个设置为 null 的 displayName 字段。我不知道如何改变它。这是我的:

function create(email, password, username) {
firebase.auth().createUserWithEmailAndPassword(email, password).catch(function(error) {
$timeout(function() {
var errorCode = error.code;
var errorMessage = error.message;
console.log(errorCode.toUpperCase() + ":" + errorMessage);
})
});
firebase.auth().onAuthStateChanged(function(user) {
if (user) {
$timeout(function() {
console.log("Success! Account Created!");
user.displayName = username; /* this doesn't work*/
});
} else {}
});
}

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