启动时出现问题..
我初始化了我的firebase应用。但是auth()无效
var auth = firebase.auth();
console.log(auth.createUserWithEmailAndPassword)
createUserWithEmailAndPassword
返回undefined。
它还会出现功能错误
var email = "mail@mail.com"
var password = 123
var auth = firebase.auth();
auth.createUserWithEmailAndPassword(email, password).then(function(result) {
console.log(result)
}).catch(function(error) {
console.log(error)
});
错误:
TypeError:auth.createUserWithEmailAndPassword不是函数
有什么问题?