简体   繁体   中英

Selected option in angular select

I have select with ng-repeat:

<select class="span5 ui-select2 id="goal_{{goal.id}}" multiple="multiple">
  <option ng-repeat="counterGoal in counterGoals" value="{{counterGoal.id}}">{{counterGoal.name}}</option>
</select>

in goal model I have counter_goal_ids array like [1,2,3,4,5,6] . How can I select options that are included in goal.counter_goal_ids ?

Try the following:

You can select the options by using the ng-selected attribute and a custom function in your model

ng-selected="isInGoalIds({{counterGoal.id}})"

And in your model, add a function

$scope.isInGoalIds = function(id){
    angular.forEach($scope.counter_goal_ids, function(value, index){
      if(id == value){
        return true;
      }
    });
    return false;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM