📅  最后修改于: 2020-10-25 11:25:17             🧑  作者: Mango
在本章中,我们将向您展示如何使用Firebase电子邮件/密码身份验证。
要验证用户身份,我们可以使用createUserWithEmailAndPassword(email,password)方法。
让我们考虑以下示例。
var email = "myemail@email.com";
var password = "mypassword";
firebase.auth().createUserWithEmailAndPassword(email, password).catch(function(error) {
console.log(error.code);
console.log(error.message);
});
我们可以检查Firebase仪表板并查看是否已创建用户。
登录过程几乎相同。我们正在使用signInWithEmailAndPassword(电子邮件,密码)登录用户。
让我们考虑以下示例。
var email = "myemail@email.com";
var password = "mypassword";
firebase.auth().signInWithEmailAndPassword(email, password).catch(function(error) {
console.log(error.code);
console.log(error.message);
});
最后,我们可以使用signOut()方法注销用户。
让我们考虑以下示例。
firebase.auth().signOut().then(function() {
console.log("Logged out!")
}, function(error) {
console.log(error.code);
console.log(error.message);
});