我想为我的角度应用程序制作一个自定义验证指令。唯一的问题是我不知道如何获得价值
<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)
}
});