我已经定义了一个这样的指令:
angular.module('MyModule', [])
.directive('datePicker', function($filter) {
return {
require: 'ngModel',
link: function(scope, elem, attrs, ctrl) {
ctrl.$formatters.unshift(function(modelValue) {
console.log('formatting',modelValue,scope,elem,attrs,ctrl);
return $filter('date')(modelValue, 'MM/dd/yyyy');
});
ctrl.$parsers.unshift(function(viewValue) {
console.log('parsing',viewValue);
var date = new Date(viewValue);
return isNaN(date) ? '' : date;
});
}
}
});
我将其应用于这样的元素:
<input type="text" date-picker="MM/dd/yyyy" ng-model="clientForm.birthDate" />
每当我将date-picker
属性添加到元素时,都会触发我的指令,但我想知道如何MM/dd/yyyy
在指令 JS 中访问属性的值 (),以便我可以删除旁边的常量$filter
。我不确定是否有任何我有权提供的变量。