我正在使用 firebase,由于某种原因,我的代码没有推送数据,而且我没有在 firebase url 中看到数据。我的代码是这个
var chatref = new Firebase('https://flockedin.firebaseio.com/');
chatref.push({ ChatId: $('#conversationId').text(), User: $('#username').html(), Message: $('#txtchat').val() }, function (response) { if (response) { alert('saved'); } });
我收到警报“已保存”,但我无法在 firebase url 中找到数据。
此外,为 Firebase 中的每个 url 提供的 API Key 的用途是什么。
更新:这发生在 IE10 中。在其他浏览器中它工作正常