我需要在另一個框架中通過調用parent.postMessage(「printComments」,「*」)來接收來自websocket的新數據時, 「):當數據被加載以響應事件時,重新加載角表不起作用
var app = angular.module('myapp', []);
var printOperation;
function GetFromLocalStorage(key) {
var items = localStorage.getItem(key);
console.log(items);
if (items === null) {
console.log("item null");
return null;
} else {
if (typeof items != "string") {
items = JSON.stringify(items);
}
return items;
}
}
app.controller('MyCtrl',
function ($scope) {
$scope.printComments = function() {
//$scope.obj=GetFromLocalStorage("AllComments");
$scope.obj = [{
"nome": "first",
"status": 1,
"testo": "Rottura rullo 1!!!"
}, {
"nome": "second",
"status": 0,
"testo": "Rottura rullo fsdfsf!!!"
}];
console.log("ricevo evento e ricarico tabella");
console.log($scope.obj);
};
console.log("assegno print operation");
printOperation = $scope.printComments;
printOperation();
}
);
var eventMethod = window.addEventListener ? "addEventListener" : "attachEvent";
var eventer = window[eventMethod];
var messageEvent = eventMethod == "attachEvent" ? "onmessage" : "message";
eventer(messageEvent, function (e) {
console.log("ricevo messaggio");
printOperation();
}, false); \t \t
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.2/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div ng-controller="MyCtrl" ng-app="myapp">
<table ng-table="commentsTable">
<tr ng-repeat="item in obj track by $index">
<td class="plantCell">{{item.nome}}: </td>
<td class="statusCell">{{item.status}}</td>
<td class="statusCell">{{item.testo}}</td>
</tr>
</table>
</div>
如果我打電話printOperation 內範圍功能,該表是正確更新,如果在反向我把它當我收到事件,表是未更新。如果它是一個Swift或Java程序,我會認爲我處於後臺線程中,JavaScript中是否存在這樣的概念,以及如何進入主線程?
我認爲你必須使用一個回調,因爲printOperation()外的角度是不明確的,同時是越來越執行它。所以不知何故,你必須等待角鬥士的執行才能結束。 – Vivz
不,printOperation函數內部的控制檯消息實際上是打印的,所以它不僅被加載,而且被執行。這是非常自然的,因爲範圍函數一旦加載表就執行,而事件在事件發送後很晚纔到達。 –
自從您放置printOperation();在角度範圍內。試着把它放在外面,然後你就會明白我在說什麼。 – Vivz