我使用角度UI bootstrap popup date-picker来构建一个指令,可以让我轻松地在需要的地方添加日期选择器。
当我将其与uiMask Directive结合使用时,当我选择日期时,输入中的值会被加扰。
这是我的HTML :
<p class="input-group">
<input type="text" class="form-control"
ui-mask="99/99/9999"
ng-model="ngModel"
ng-model="order.date"
datepicker-popup="MM/dd/yyyy"
is-open="opened"
datepicker-options="dateOptions"
date-disabled="disabled(date, mode)"
ng-required="true"
close-text="Close" />
<span class="input-group-btn">
<button type="button" class="btn btn-default" ng-click="open($event)">
<i class="glyphicon glyphicon-calendar"></i>
</button>
</span>
</p>
我的JS :
/**
* DATE PICKER
*/
$scope.today = function () {
$scope.dt = new Date();
};
$scope.today();
$scope.clear = function () {
$scope.dt = null;
};
// Disable weekend selection
$scope.disabled = function (date, mode) {
return (mode === 'day' && (date.getDay() === 0 || date.getDay() === 6));
};
$scope.toggleMin = function () {
$scope.minDate = $scope.minDate ? null : new Date();
};
$scope.toggleMin();
$scope.open = function ($event) {
$event.preventDefault();
$event.stopPropagation();
$scope.opened = true;
};
$scope.dateOptions = {
formatYear: 'yy',
startingDay: 1
};
$scope.initDate = new Date('2016-15-20');
$scope.formats = ['dd-MMMM-yyyy', 'yyyy/MM/dd', 'dd.MM.yyyy', 'shortDate'];
$scope.format = $scope.formats[0];
我希望能够使用ui-mask功能,通过不必键入/
来简化输入日期。是否可以一起使用这些?
答案 0 :(得分:13)
以下代码段对我有用:
.config(function ($provide) {
$provide.decorator('datepickerPopupDirective', function ($delegate) {
var directive = $delegate[0];
var link = directive.link;
directive.compile = function () {
return function (scope, element, attrs) {
link.apply(this, arguments);
element.mask("99/99/9999");
};
};
return $delegate;
});
});
它只是使用 jquery.maskedinput.js 提供的掩码修饰datepicker指令。玩得开心!
更新(2015年5月13日)
说明它正常工作的一名傻瓜:http://plnkr.co/edit/fTFNu9Mp2kX5X1D6AJOx?p=preview
答案 1 :(得分:3)
查看此插件中的案例4: https://plnkr.co/edit/0Vr5YRVREIT5EMu1m55z?p=preview
基本上添加:添加 model-view-value =“true”:
<input name="date4" id="date4" type="text" class="form-control" uib-datepicker-popup="dd/MM/yyyy"
ui-mask="99/99/9999" placeholder="DD/MM/YYYY" ng-model="date4" ng-required="true"
model-view-value="true" is-open="popup4.opened" datepicker-options="dateOptions"
show-button-bar="false"/>
<span class="input-group-btn">
<button type="button" class="btn btn-default" ng-click="open4()"><i class="fa fa-calendar fa-1"></i></button>
</span>
答案 2 :(得分:2)
当我尝试重现您的挑战时,首先想到的是:
new Date('2016-15-20');
返回
Invalid Date
也许这是一个开始寻找解决方案的地方。那是几号? 15个月或20个月?无论哪种方式,这都行不通。提供$scope.initDate
的有效日期。也许你的意思是'2016-12-20'?
您是否可以创建一个可用于测试可能解决方案的小例子?那你正在谈论的'混乱输入'究竟是什么?请再次提供问题和预期结果的示例。