我有一个可以获取表达式的自定义验证属性指令,例如:
<input type="text" uiSelectRequired="isParam == true"/>
我如何在我的指令中评估这个表达式,假设我不能使用隔离范围?
感谢。
angular.module("app").directive('uiSelectRequired', function () {
return {
require: 'ngModel',
link: function (scope, element, attr, ctrl) {
ctrl.$validators.uiSelectRequired = function (modelValue, viewValue) {
var attrbs = attr;
var determineVal;
if (angular.isArray(modelValue)) {
determineVal = modelValue;
} else if (angular.isArray(viewValue)) {
determineVal = viewValue;
} else {
return false;
}
return determineVal.length > 0;
};
}
};
});
答案 0 :(得分:1)
使用attr.uiSelectRequired
获取表达式,并使用$scope.$eval()对其进行评估。
请注意,您对该指令的使用是错误的。它应该是
<input type="text" ng-model="something" ui-select-required="isParam == true"/>
我也会尝试使用angular.isArray()检查你正在尝试做什么。类型文本的输入的视图值和模型值都是字符串。不是数组。