如何从ng-options下拉菜单中创建一个“全选”选项,以自动选择所有选项?

时间:2018-12-27 18:51:48

标签: javascript angularjs json ng-options

我想用一个选项填充我的ng-options下拉列表,该选项将在下拉菜单中选择所有可能的选项。问题的一部分是在这种特定情况下,我不会如何以编程方式选择要从现有JSON对象填充的选项。如何创建一个迭代当前对象的函数,然后将其插入到一个函数中,当选择了该特定对象时,该函数以编程方式选择它们?

代码

以下是示例JSON对象,下拉列表是从其中填充的:

accounts = [
{
   "Id": 2,
   "DisplayName": "Bob",
},
{
   "Id": 2,
   "DisplayName": "George",
},
{
   "Id": 2,
   "DisplayName": "Michael",
},
]

这是我的HTML下拉代码:

 <div class="form-group">  
    <label for="audience" class="col-sm-2 control-label">Audience</label>  
    <div class="col-sm-8">      
       <select id="audience" ng-model="newAnnouncement.audience"
               ng-options="accountsData.DisplayName as accountsData.DisplayName for accountsData in accounts"
               multiple >
          <option value="">All</option>
       </select>
    </div>
       <div class="col-sm-2 space">      
    </div>
 </div>

在我的component.js文件中:

(function () {
'use strict';
angular.module('adminPanel')
    .component('adminAnnouncements', {
        templateUrl: 'app/admin-panel/admin-announcements/admin-announcements.html',
        controller: [
            '$scope', 'arcService',
            function adminAnnouncementsController($scope, arcService) {
                var my = this;
                $scope.accounts = [];

                my.$onInit = () => {
                    $scope.loadAccounts();
                }

                $scope.newAnnouncement = {
                };
            }
        ]
    }
);}
)();

试验与思想

我研究过尝试克隆JSON对象,然后将其设置为

的值
<option value="">All</option>.

因此,当全部选中时,它将突出显示所有选项。但是环顾四周后,我意识到您无法完全克隆JSON对象。我的另一个想法是使用javascript .push()函数手动填充所有帐户对象的all对象,但是我希望此函数是动态的,因此在创建新的帐户对象时,我不需要返回并将人工帐户对象添加到所有对象中。

1 个答案:

答案 0 :(得分:0)

在选项上添加点击处理程序:

<option value="" ng-click="$ctrl.all($event)">All</option>

选择所有选项:

this.all = function(ev) {
    this.audience = this.accounts.reduce((a,i)=>(a.push(i.DisplayName),a),[]);
};

The DEMO

angular.module("app",[])
.controller("ctrl",function() {
  this.audience = [];
  this.accounts = [
    {"Id": 2,"DisplayName": "Bob",},
    {"Id": 2,"DisplayName": "George",},
    {"Id": 2,"DisplayName": "Michael",},
  ];
  this.all = function(ev) {
    this.audience = this.accounts.reduce((a,i)=>(a.push(i.DisplayName),a),[]);
  };
})
<script src="//unpkg.com/angular/angular.js"></script>
<body ng-app="app" ng-controller="ctrl as $ctrl">
    <select id="audience" ng-model="$ctrl.audience"
            ng-options="o.DisplayName as o.DisplayName for o in $ctrl.accounts"
            multiple >
      <option value="" ng-click="$ctrl.all($event)">All</option>
    </select>
    <br>{{$ctrl.audience}}
</body>