我想知道如何在我的本机项目中重置Firebase电子邮件身份验证密码。我想发送一封电子邮件以重置密码。如何使用以下方法做到这一点
firebase.auth().sendPasswordResetEmail
答案 0 :(得分:4)
forgotPassword = (yourEmail) => {
firebse.auth().sendPasswordResetEmail(yourEmail)
.then(function (user) {
alert('Please check your email...')
}).catch(function (e) {
console.log(e)
})
}
应该通过电子邮件发送此忘记密码的方法。