Component.HTML ファイル:
<div>
<table class="table table-bordered table-responsive">
<thead>
<tr>
<th>Company</th>
<th>Stock Price</th>
<th>Last Updated Time</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="list in model.myLists">
<th>{{list.company}}</th>
<td>{{list.stockPrice}}</td>
<td>{{list.lastUpdateTime}}</td>
</tr>
</tbody>
</table>
</div>
これは component.js ファイルです:
(function() {
"use strict";
var module = angular.module("stockdApp");
// Global variables
var stockList = [];
function getStocks (model) {
// api gets stock values every 2 seconds and saves it to stockList variable
stockList = newList;
model.myLists = stockList;
}
function controller($http) {
var model = this;
model.$onInit = function() {
getStocks(model);
}
model.$onChanges = function (changes) {
console.log("channges",changes);
};
};
module.component("stocks", {
templateUrl: "./stock.component.html",
controllerAs: "model",
controller: ["$http", controller],
bindings: {
myLists: "<"
}
});
}());
2 秒ごとに新しいデータを取得する API 呼び出しがあり、新しいデータを取得するたびにテーブルを更新したいと考えています。Angular 1.5 を使用していますが、テーブルを更新する方法がわかりません。