角度js中的ng-repeat问题,$ scope绑定到视图

时间:2017-02-26 07:07:56

标签: angularjs http

ng-repeat未与$scope绑定,因为在控制台中生成了data-set。 这是工作plunk

请将其加载到 http ,因为可能无法通过 https 生成数据集。

任何解决方法都会受到赞赏。

1 个答案:

答案 0 :(得分:1)

这是一个代价高昂而又愚蠢的错过;主控制器中的注入顺序出错,导致$timeout注入.controller('demoController',['$mdDialog','$q','$scope','$timeout','$http', function($mdDialog,$q,$timeout,$scope,$http) { 别名,反之亦然。变化

.controller('demoController', ['$mdDialog', '$q', '$scope', '$timeout', '$http',
function($mdDialog, $q, $scope, $timeout, $http) {

net.trainParam.max_fail = 1;