我正在尝试将daterangepicker插件包装到angular指令中。尽管我设法通过在回调函数中提醒选定的日期来使其起作用,但似乎无法将选定的日期保存到$ scope或更新ng-model。我添加了注释'// daterangepicker的CALLBACK',以便任何看到此内容的人都可以在下面的代码中轻松找到它。我希望有更多经验的人可以阐明如何实现这一目标。
HTML(调用指令):
<input id="date-range-picker" class="form-control" type="text"
ng-model =“ date” time-recorder-date-range-picker />
Angular指令:
module.directive('timeRecorderDateRangePicker', function() {
return {
restrict: 'A',
require: 'ngModel',
link: function(scope, element, attrs, ngModelCtrl) {
element.daterangepicker({
startDate: moment.utc().subtract(7, 'days'),
endDate: moment.utc(),
minDate: '01/01/2014',
maxDate: moment.utc(),
dateLimit: {
days: 365
},
showDropdowns: false,
showWeekNumbers: true,
timePicker: false,
ranges: {
'Today': [moment.utc(), moment.utc()],
'Yesterday': [moment.utc().subtract(1, 'days'), moment.utc().subtract(1, 'days')],
'Last 7 Days': [moment.utc().subtract(6, 'days'), moment.utc()],
'Last 30 Days': [moment.utc().subtract(29, 'days'), moment.utc()],
'This Month': [moment.utc().startOf('month'), moment.utc().endOf('month')],
'Last Month': [moment.utc().subtract(1, 'month').startOf('month'), moment.utc().subtract(1, 'month').endOf('month')]
},
opens: 'right',
format: 'MMMM D, YYYY',
separator: ' to ',
buttonClasses: ['btn btn-default'],
locale: {
applyLabel: 'Apply',
cancelLabel: 'Cancel',
fromLabel: 'From',
toLabel: 'To',
customRangeLabel: 'Custom',
daysOfWeek: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'],
monthNames: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
firstDay: 1
}
}, function(start, end, label) {
// CALLBACK of daterangepicker
alert('Callback!!!');
}).prev().on('click', function() { // makes calendar icon click work
$(this).next().focus();
});
}
};
});
最佳答案
您可以使用jqlite在Angularjs项目中使用dangrossman's bootstrap-daterangepicker,请尝试以下操作
在HTML中
<input type="text" id="daterange" />
然后将选择器附加到要使用jqlite触发它的元素
angular.element('#daterange').daterangepicker({
timePicker: true,
timePickerIncrement: 30,
locale: {
format: 'MM/DD/YYYY h:mm A'
}
});
您还可以使用事件
angular.element('#daterange').on('apply.daterangepicker', function(ev, picker) {
//do something, like calling a function
$scope.doSomething(picker.startDate, picker.endDate);
});
关于javascript - 将daterangepicker转换为angular指令,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28745357/