javascript – 在AngularJS中绑定复选框或多选下拉数组?

我是AngularJS的新手,因此很困惑如何将复选框或多选下拉列表绑定到单独的列表.

<body ng-controller="FooListCtrl">
  <span ng-repeat="foolist in foos">
    <select ng-model="selected" ng-options="foo for foo in foolist" multiple="">
    </select>
  </span>
</body>
'use strict';

function FooListCtrl($scope) {
    $scope.foos = {"Bar": [ "foo", "bar"]};
    $scope.selected = [];
}

FooListCtrl.$inject = ['$scope'];

运行代码:http://jsfiddle.net/gBcN2/

最佳答案 如果我做对了你想要的:

>您没有ng-app定义.
>在jsFiddle上,对于AngularJS的片段,将无包装< head>加载模式,如果您使用AngularJS作为外部资源.
>选择的模型有它自己的“范围”,因为你使用ng-repeat.要了解我的意思,这里是您的代码的固定版本:
http://jsfiddle.net/gBcN2/2/

首先{{selected}}工作正常,但第二个是ng-repeat范围的“外部”.

PS:
如果你想像你在例子中所写的那样使用它,则不必使用ng-repeat:quick fiddle of how I’d do it.

编辑:
对于复选框,它就是这样的 – http://jsfiddle.net/qQg8u/2/

点赞