在node.js中未定义Firebase createUserWithEmailAndPassword方法

时间:2016-06-24 13:53:29

标签: node.js firebase firebase-authentication

启动时出现问题..

我初始化了我的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不是函数

有什么问题?

1 个答案:

答案 0 :(得分:2)

对于node.js,Firebase 3.0.5中没有createUserWithEmailAndPassword方法,请查看documentation