如何在Angularjs中获得选定的optgroup值?

时间:2016-09-17 04:42:01

标签: javascript angularjs select ng-options

使用我的应用程序,我想在选择下拉列表中获取所选的optgroup值。

这是代码

HTML:

<select ng-model='theModel'   ng-change="display(theModel)" >
        <optgroup ng-repeat='group in collection' label="{{group.Name}}">
        <option ng-repeat='veh in group.Fields'>{{veh.Name}}</option>
        </optgroup>
</select>

Controlelr:

$scope.display = function(name) {
       alert(name); // i want to get the selected value and the optgroup value
}

DEMO APP

需要输出: 我想显示所选的optgroup值,如果我选择Collection 1下的Field1,我需要Collection1.Field1

1 个答案:

答案 0 :(得分:3)

我已更新选项中的值以保持对组和值的引用。如果组中的值是唯一的,那么我们可以使用一个值来对控制器变量中的映射进行分组,并从那里获得任何数据。但由于相同的值存在于组中,因此我在opt值中保留了组的引用并使用了它。

现在,选择框中显示的文字是所需的,并且选项的值会更新以保留组的引用。所以现在都可以使用。

更新了Plunkr https://plnkr.co/edit/zvNcdDe0kmMJ1R67hOkK?p=preview

<强>控制器:

var app = angular.module('todoApp', []);

app.controller("dobController", ["$scope", "$http",
  function($scope, $http) {
    $http.get('test.json').then(function(response) {
      $scope.collection = response.data.Collections;
      console.log(response);
    });

    $scope.matches = [];

    $scope.display = function(name) {

       alert("controller:"+name.split("::")[0]+" and value ::"+name.split("::")[1] );
    }

  }
]);

<强> HTML:

<select ng-model='theModel' ng-change="display(theModel)">
    <optgroup ng-repeat='group in collection' label="{{group.Name}}">
    <option ng-repeat='veh in group.Fields' value='{{group.Name}}::{{veh.Name}}'>{{veh.Name}}</option>
    </optgroup>
    </select>