我有一个controller
具有以下调用的:
userFactory.getScore(_token, function (response) {
$scope.scores = response;
renderCharts(response,$scope);
score.resolve();
});
这里,userFactory
是一家工厂。
现在在我的function renderCharts
:
function renderCharts(response,$scope) {
$scope.current_target_label = {"label":"Current Score"};
// Highcharts config object declaration here
setInterval(function($scope) {
// Logic to update highchart
$scope.current_target_label = {"label":"Target Score"};
}
}
以下分配不会更新html
视图中 ng-bind 中的值:$scope.current_target_label = {"label":"Target Score"};
我肯定做错了什么,感谢任何指针,以便如何获取视图中div
更新文本的值html
?