我需要使用firebase-document
從Firebase中提取數據。我需要在之後進一步處理數據,我收到響應負載。我該怎麼做呢?使用firebase的任何示例 - 文檔
I read the documentation here, but there are no examples。我看到有一個名爲transactionsComplete
的房產,但同樣沒有例子。由於它是promise
,我不確定如何實現它。
是否有人可以提供如何使用firebase-document
的屬性或方法來處理該請求,並後交易完成返回的數據工作的代碼示例?
<firebase-document
id="doc"
app-name="my-app">
</firebase-document>
<script>
_userChanged: function(u) {
if(u) {
var doc = this.$.doc;
var path = [ 'users' , u.uid ].join('/');
doc.path = path; // this should send a request for data
// but how do I ensure to process what is returned
// after and only after it comes back?
}
},
</script>