我有一個測試數據庫工作,當我使用console.log
我可以看到的對象,但當我嘗試呈現在HTML中。它顯示空爲什麼?推入數組控制檯日誌可以看到,但不會呈現在HTML爲什麼? angularJS
我的角碼
var app = angular.module('startBet',['firebase']);
var ref = new Firebase("https://vsw.firebaseio.com");
app.controller("ibet", function($scope, $firebaseObject) {
$scope.todos = [{act: 'complete', test: 'abc'},
{act: 'not', test: 'bdb'}];
$scope.bets = [];
var ref2 = new Firebase("https://vsw.firebaseio.com/bets");
ref2.once("value", function(snapshot) {
snapshot.forEach(function(childSnapshot) {
var key = childSnapshot.key();
var childData = childSnapshot.val();
$scope.bets.push(childData);
$scope.todos.push(childData);
});
});
console.log($scope.todos);
console.log($scope.bets);
我的HTML
<div class="bot-container" ng-app='startBet'>
<div class="in-play" ng-controller='ibet'>
<header><p>{{todos.length}}</p></header>
<div class="bets-list">
<div class="bet-title">
{{bets.length}}
</div>
對不起任何結束標記。沒有打擾複製其他人 我可以看到我的硬編碼的長度爲2,其格式爲html,而另一個爲0.
但是在console.log中,我可以看到兩個都顯示所有對象,或者只是那兩個硬編碼。
我在這裏錯過了什麼?
在此先感謝。