我没有尝试在Firebase身份验证中验证任何帐户并更改操作URL来进行电子邮件验证,现在,当用户单击操作链接时,它并不会验证用户,并且该操作链接没有重置按钮。我尝试输入其占位符值,但没有用。有人知道我该如何解决?还是我必须执行任何其他步骤才能真正验证用户。
firebase.auth().createUserWithEmailAndPassword(this.email, this.password)
.then(cred => {
ref.set({
username: this.username,
avatar: this.signAvatar,
user_id: cred.user.uid,
villaComments: [],
ratedVillas: []
})
}).then(() => {
firebase.auth().onAuthStateChanged(function(user) {
if (user) {
user.sendEmailVerification();
} })