一尘不染

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

node.js

启动有问题。

我初始化了我的Firebase应用程序。但是auth()无法正常工作

var auth = firebase.auth();
console.log(auth.createUserWithEmailAndPassword)

createUserWithEmailAndPassword 返回未定义。

它还给出了功能错误

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不是函数

问题是什么?


阅读 221

收藏
2020-07-07

共1个答案

一尘不染

Firebase3.0.5中没有用于node.js的方法createUserWithEmailAndPassword,请参阅文档

2020-07-07