我选择了 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>

goal 模型中,我有 counter_goal_ids 数组,如 [1,2,3,4,5,6]
如何选择 goal.counter_goal_ids 中包含的选项?

最佳答案

请尝试以下操作:

您可以使用 ng-selected 属性和模型中的自定义函数来选择选项

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

在你的模型中,添加一个函数
$scope.isInGoalIds = function(id){
    angular.forEach($scope.counter_goal_ids, function(value, index){
      if(id == value){
        return true;
      }
    });
    return false;
}

10-08 12:35