我想使用变量来处理数组......怎么样?
例如: (HTML FILE // VAR variable_here)
<div class="subject-box" ng-repeat="subj in tmc.schultage.variable_here">
我希望有人能帮助我。
卡尔文
答案 0 :(得分:0)
您可以使用方括号将值作为对象键传递。
<div ng-controller="MyCtrl">
<div class="subject-box" ng-repeat="subj in tmc.schultage[name]">
{{subj}}
</div>
</div>
var myApp = angular.module('myApp',[]);
//myApp.directive('myDirective', function() {});
//myApp.factory('myService', function() {});
function MyCtrl($scope) {
$scope.name = 'someArray';
$scope.tmc = {
schultage : {
someArray : [1,2,3,4,5,6,7]
}
}
}