这里是输入框:
<input class="weui_input" type="time" ng-model="callDate" date-format>
这里是指令代码:
contr.directive('dateFormat', ['$filter',function($filter) { return { require: 'ngModel',
link: function(scope, elm, attrs, ctrl) {
ctrl.$formatters.unshift(function formatter(value) { return $filter('date')(value, 'HH:mm');
});
ctrl.$parsers.push(function parser() { return ctrl.$modelValue;
});
}
};
}])
添加上指令之后还是不能达到'HH:mm'这种格式。
海绵宝宝撒
qq_花开花谢_0
随时随地看视频慕课网APP
相关分类