未捕获的SyntaxError:意外的标记,位于firebase中的refCreateUser中
我在控制台中看到以下错误。 我不确定如何在ref.CreateUser中提供电子邮件和密码
未捕获的SyntaxError:意外的令牌,
这是功能
function so_passwd() {
var email = $("#so_email").val();
var password = $("#so_pass").val();
ref.createUser({
email,
password
}, function(error) {
if (error === null) {
console.log("User created successfully");
} else {
console.log("Error creating user:", error);
}
});
}
它不应该是:
function so_passwd(){
var email = $("#so_email").val();
var password = $("#so_pass").val();
ref.createUser({
"email": email
"password": password
}, function(error) {
if (error === null) {
console.log("User created successfully");
} else {
console.log("Error creating user:", error);
}
});
链接地址: http://www.djcxy.com/p/8025.html
上一篇: Uncaught SyntaxError: Unexpected token , in refCreateUser in firebase