无法通过网络应用将数据保存在Firebase中

时间:2019-02-28 16:50:38

标签: javascript html firebase

我正在尝试在用户进入网站进行注册请求时将其详细信息保存在Firebase中,但是这些详细信息并未保存。 这是html代码:

select data from table 
join (select tag, max(timestamp) maxtimestamp from table t1 group by tag) as latesttags 
on table.tag = latesttags.tag and table.timestamp = latesttags.maxtimestamp

使用的相应JavaScript是:

 <input type="name" placeholder="Full Name..." id="name_field1" class="inp" />
                                 <input type="email" placeholder="Email..." id="email_field1" class="inp" />
<input type="text" placeholder="Desired Password..." id="password_field1" class="inp" />
<button onclick="save()">Request Sign In</button>

3 个答案:

答案 0 :(得分:0)

您需要推送值:

firebaseRef.push(nam);
firebaseRef.push(em);
firebaseRef.push(pas);

答案 1 :(得分:0)

Firebase在其网站上有一个惊人的documentation。如果您每天阅读一篇文章,我敢打赌您会在几周内掌握它。

首先初始化数据库:

// Get a reference to the database service
var database = firebase.database();

写数据:

database.ref('users/ashley').set({
    username: value1,
    email: value2,
    profile_picture : value3
});

也。 请不要在数据库中保存用户密码

答案 2 :(得分:0)

请勿将ref()留空。尝试以下一种方法:

var firebaseRef=firebase.database().ref('testKey/');