2
我正在使用Twitter流API。我的服務器從concretes主題標籤獲取推文。爲此,我使用IO套接字。客戶端從套接字接收消息:實時表AngularJS
socket.on('tweet', function(msg) {
console.log(msg);
$scope.streaming.push(msg);
});
你可以看到,我也推消息在表中稱作流。在HTML我有NG-重複指令:
<table class="table table-bordered table-hover table-striped">
<tr ng-repeat="tweet in streaming">
<td>
<div class="col-lg-2">
<i class="fa fa-twitter" aria-hidden="true"></i>
</div>
<div class="col-lg-10">
{{tweet}}
</div>
</td>
</tr>
</table>
表開始空和填充的鳴叫進來,不過頁面不會有改變。只有當我停止服務器時纔會顯示推文。
爲什麼會發生這種情況?
我不知道你的代碼,但通過停止服務器,你triggest消化週期看起來過於導致渲染你的東西 –
它的工作將$超時。謝謝! –