在下拉菜单中显示以前选择的项目

时间:2015-10-15 00:59:28

标签: html angularjs drop-down-menu x-editable

使用角度和角度可修改我有一个下拉菜单,其中包含许多选项,您可以在这些选项中选择'设施'阵列。

我从下拉列表中保存选项并保存后,我希望用户可以返回页面并编辑以前选择的项目。

HTML:

<select multiple  class="w-select am-dropdown" size="12" data-ng-model="Amenities" 
data-ng-options="amenity.amenity for amenity in amenities" required=""></select>

JS:

$scope.amenities = [{amenity: coffee}, {amenity: beer}, {amenity: parking}];

$scope.Amenities = [];

$scope.selectedAmenities = [coffee, beer];//these are amenities saved in the 
database that I want to be able to show as selected using the editable form

2 个答案:

答案 0 :(得分:1)

有一个与此相同的案例

添加$ scope。$ watch将选定的值放入$ scope.selectedValues,如下所示

$scope.$watch('selectedAmenities ', function (nowSelected) {  
   $scope.selectedValues = [];  
   if (!nowSelected) {  
     return;  
   }  
   angular.forEach(nowSelected, function (val) {  
     $scope.selectedValues.push(val.amenity.toString());  
   });  
 }); 

然后像下面这样使用它:

select multiple ng-model="selectedValues" class="w-select am-dropdown" size="12"  >  
   <option ng-repeat="amenity in amenities" value="{{amenity.amenity}}" ng-selected="{{selectedValues.indexOf(amenity.amenity)!=-1}}">{{amenity.amenity}}</option>  
 </select>  

Plunker

的完整代码

希望它对你有所帮助。

答案 1 :(得分:1)

你是说这个意思吗?

var m = angular.module('m', []).controller('c', ['$scope',
  function($scope) {
    $scope.avilibleValues = ['a1', 'a2', 'a3', 'a4', 'a5'];
    $scope.selected = [];
    $scope.last = 'a1';
    $scope.selecting = 'a1';
    $scope.select = function(it) {
      console.log('select:' + it);
      $scope.selecting = it;
    };

    $scope.change = function() {
      console.log($scope.last);
      $scope.last && $scope.selected.push($scope.last);
      $scope.last = $scope.selecting;
    };
  }
]);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<script src="script.js"></script>
<div ng-app="m">
  <div ng-controller="c">
    <div class="row">
      <label>seleted:</label>
      <div>
        <p ng-repeat="it in selected">
          <a ng-click="select(it)">{{it}}</a>
        </p>
        <div>

        </div>
        <div class="row">
          <label>selet</label>
          <select ng-model="selecting" ng-options=" i for i in avilibleValues" ng-change="change()"></select>
        </div>
      </div>
    </div>
    <p>
      selecting:{{selecting}}
      <p>
        selected:{{selected}}
        <p>
          last:{{last}}
          <p>

  </div>
</div>