var myApp = angular.module("myApp", ['angularjs-dropdown-multiselect']);
myApp.controller("MyController", ["$scope", function($scope) {
$scope.message = "Angularjs-multiselect-dropdown";
$scope.example6model = [{id: 1}, {id: 3}];
$scope.example6data = [{id: 1, label: "David"}, {id: 2, label: "Jhon"}, {id: 3, label: "Danny"}];
$scope.example6settings = {};
$scope.example65model = [{id: 1}];
$scope.example65data = [{id: 1, label: "David"}, {id: 2, label: "Jhon"}, {id: 3, label: "Danny"}];
$scope.example65settings = {selectionLimit: 1};
}]);
我的问题是:当我只想获取第二,第四,第六个循环时,如何设置调试器?