我正在使用Firebase和JavaScript创建新的Web应用程序。更准确地说,我向\firebase.auth().createUserWithEmailAndPassword(email, password)
注册了新用户,但是该用户可以使用,但是当我使用此关键字时,我想获取新用户的UID并将其初始化为新变量。此后,我想使用此密钥UID(即名称,年龄等)在数据库中添加新用户。我也尝试在浏览器中也使用console.log(user.uid)
来显示它,但是显示未定义。请帮助我。
Code.html
<input type="email" id="txtEmail" placeholder="username">
<input type="email" id="txtPass" placeholder="password">
<button id="btnSignUp" type="submit" onclick="Press()"> SignUp</button>
<script src="https://www.gstatic.com/firebasejs/5.2.0/firebase.js"></script>
<script >
// Initialize Firebase
var config = {
apiKey: "api key",
authDomain: "bigpro-c6a4c.firebaseapp.com",
databaseURL: "https://bigpro-c6a4c.firebaseio.com",
projectId: "bigpro-c6a4c",
storageBucket: "",
messagingSenderId: "id"
};
firebase.initializeApp(config);
</script>
<script>
function Press(){
var txtEmail = document.getElementById('txtEmail');
var txtPass = document.getElementById('txtPass');
var txtEmail = document.getElementById('txtEmail');
var txtPass = document.getElementById('txtPass');
var email = txtEmail.value;
var password=txtPass.value;
firebase.auth().createUserWithEmailAndPassword(email, password)
.then(function(user){
// console.log('uid',user.uid);
console.log(user.uid);
}).catch(function(error) {
});
}
</script>
答案 0 :(得分:0)
createUserWithEmailAndPassword返回包含UserCredential而不是User的承诺。
尝试以下代码段:
firebase.auth().createUserWithEmailAndPassword(email, password)
.then(function(userCredential) {
console.log(userCredential.user.uid);
}).catch(function(error) {
});
答案 1 :(得分:0)
客户端SDK的createUserWithEmailAndPassword()
函数在成功创建后不会返回用户对象,请检出these docs here,这说明“ 如果创建了新帐户,则该用户已登录自动”,并且没有提及要返回的用户对象,而且他们的示例都没有这种东西。
您正在考虑(或看着)Admin SDK - which DOES return the user object。
相反,对于客户端,您需要访问新创建的(,因此当前登录 )用户。...
firebase.auth().createUserWithEmailAndPassword(email, password)
.then(function () {
console.log(firebase.auth().currentUser.uid)
}).catch(function (error) {
console.log(error)
});