我正在使用电子邮件/密码进行身份验证:
firebase.auth().createUserWithEmailAndPassword(email, password).catch(function(error) {
// Handle Errors here.
});
在这里听auth:
firebase.auth().onAuthStateChanged(function(user) {
if (user) {
// User is signed in.
console.log(user);
} else {
// No user is signed in.
console.log("Not signed in");
}
});
哪个工作正常。在检查auth返回的用户对象时,uid是一个随机字符串,有没有办法在创建帐户时设置此uid?例如,uid =“someUserName”?
由于