作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有人可以帮助我如何将匿名帐户 (signInAnonymouslyAndRetrieveData) 转换为永久帐户吗?我已经尝试过:
firebase.auth().currentUser.linkAndRetrieveDataWithCredential(credential).then(function(usercred) {
var user = usercred.user;
console.log("Anonymous account successfully upgraded", user);
}, function(error) {
console.log("Error upgrading anonymous account", error);
});
但我得到了
cannot read property "linkAndRetrieveDataWithCredential" of null
错误。
最佳答案
如果当前没有登录用户,
firebase.auth().currentUser
将为 null。
确保您的匿名用户仍处于登录状态,如上面的示例所示,然后您可以使用 linkAndRetrieveDataWithCredential
升级您的用户
const credential = firebase.auth.EmailAuthProvider.credential(email, password);
const currentUser = firebase.auth().currentUser;
if (currentUser) {
currentUser.linkAndRetrieveDataWithCredential(credential).then((userCredential) => {
const user = userCredential.user;
console.log("Account linking success", user);
}, (error) => {
console.log("Account linking error", error);
});
}
引用文献:
关于javascript - 如何将匿名帐户转换为永久帐户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51785422/
我是一名优秀的程序员,十分优秀!