我目前有一个创建用户帐户的功能。我希望能够添加用户名字段,但我似乎无法弄清楚如何更新它。我注意到在Google控制台中,有一个displayName字段设置为null。我不知道如何改变它。这就是我所拥有的:
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 {}
});
}
答案 0 :(得分:7)
firebase.auth.Auth
为您提供firebase.User
。您应该查看可以在User
上运行的方法:https://firebase.google.com/docs/reference/js/firebase.User
好像您正在寻找updateProfile
:https://firebase.google.com/docs/reference/js/firebase.User#updateProfile