gpt4 book ai didi

javascript - 如何在 firebase 中向用户添加自定义配置文件详细信息?

转载 作者:太空宇宙 更新时间:2023-11-04 01:51:22 27 4
gpt4 key购买 nike

如何在 Firebase 中向用户添加自定义个人资料详细信息?我知道我们已经可以添加 displayName 和 photoURL,但我想添加更多字段,例如年龄、性别、国家/地区等。有什么办法可以做到这一点吗?

user.updateProfile({
displayName: "Jane Q. User",
photoURL: "https://example.com/jane-q-user/profile.jpg"
}).then(function() {
// Update successful.
}).catch(function(error) {
// An error happened.
});

最佳答案

您可以创建一个users端点并在其中存储自定义用户数据。

function writeUserData(userId, name, email, imageUrl) {
firebase.database().ref('users/' + userId).set({
username: name,
email: email,
profile_picture : imageUrl,
// Add more stuff here
});
}

参见https://firebase.google.com/docs/database/web/read-and-write#basic_write了解更多信息。

关于javascript - 如何在 firebase 中向用户添加自定义配置文件详细信息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49538158/

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