Tag: onload

在承诺触发之前,Firebase正在等待加载数据库数据

有人可以解释如何使用Firebase的承诺与我的代码如下: var p = new Promise(function(resolve, reject) { var data=null; var ref = db.ref("/"); ref.once("value", function(snapshot) { data = snapshot.val(); }); data.onload = function() { console.log(data+" onload"); if (data!=null) { resolve('Success!'); } else { reject('Failure!'); console.log('failed'); } } }); p.then(function() { /* do something with the result */ console.log(data+" done"); }).catch(function() { /* error 🙁 […]