0

我想为我的角度应用程序制作一个自定义验证指令。唯一的问题是我不知道如何获得价值

<select class="form-control" ng-model="$parent.newSector" ng-options="item.id as item.name for item in sectors" not-empty-array="merchant.sectors"></select>

正如您从我的标记中看到的那样,我有一个名为 notEmptyArray 的指令,我在其中设置了一个表达式(它与 ng-model 相同,只是一个不同的表达式)。我现在如何在我的指令中访问它?

directive = function({
  require: "ngModel",
  link: function(scope, element, attributes, control) {
    //how to access the value of merchant.sectors (its an array in the scope)
  }
});
4

1 回答 1

1

您需要隔离范围:

app.directive("notEmptyArray",function(){
    return {
        scope:{
            items:"=notEmptyArray"
        },
        link: function(scope, element, attributes, control) {
            /* anything you feed to "not-empty-array" would be accessible 
              inside items */
            console.log(scope.items);    
        }
    }
});
于 2013-09-23T14:21:07.007 回答