我正在使用React开发跨平台应用程序。我找到了一些如何从firebase获取数据的示例。这是我写的代码:
const firebaseConfig = {
apiKey: "AIzaxxxxxxxxxxxx",
authDomain: "<xxxxxxxxx.firebaseapp.com>",
databaseURL: "<https://xxxxxxxxx.firebaseio.com>",
storageBucket: "<xxxxxxxxxxx.appspot.com>",
};
var firebaseApp = firebase.initializeApp(fireBaseconfig);
var rootRef = firebase.database().ref();
var ref = rootRef.child("items");
ref.once("value").then(function(snapshot) {
console.log(snapshot);
});
但是利用断点,在调试时,我注意到回调没有播放,数据不是来自firebase。我的应用程序只是没有去这个位置的块:
console.log(snapshot);
告诉我我做的不对?