使用javascript开始使用firebase

时间:2016-09-09 00:16:03

标签: javascript html firebase firebase-realtime-database

我刚开始使用firebase和javascript html为我的应用制作网站。

我尝试做的就是从firebase访问任何值并将其打印在网站上。

我按照了firebase的快速入门教程,并复制了他们拥有的完全相同的代码:https://www.youtube.com/watch?v=k1D0_wFlXgo

这是代码:

<!DOCTYPE html>

<html>
    <head>
    <meta charset="utf-8">
    <title>Javascript</title>

    </head>


<body>

    <h1 id="bigOne"></h1>
    <script src="https://www.gstatic.com/firebasejs/3.3.2/firebase.js"></script>
    <script>
  // Initialize Firebase
        var config = {
        apiKey: "AIzaSyD0C9hhfpdKEIahisG0VNInZZGjCyf5Lo0",
        authDomain: "game-of-chats-ce897.firebaseapp.com",
        databaseURL: "https://game-of-chats-ce897.firebaseio.com",
        storageBucket: "game-of-chats-ce897.appspot.com",
        };
        firebase.initializeApp(config);
        var bigOne = document.getElementById('bigOne');
        var dbRef = firebase.database().ref().child('text');

        dbRef.on('value', snap => bigOne.innerText) = snap.val())

    </script>
</body>

</html>
我错过了什么吗?我是新人,所以我可能会缺少一小步。

1 个答案:

答案 0 :(得分:0)

试用:

dbRef.on('value', function(snapshot) {
    bigOne.innerText = snapshot.val();
});