我正在开发一个角度2应用程序并使用this日期范围选择器。其他页面加载500毫秒。带有此日期范围选择器的页面加载时间超过5秒,有时加载时间超过10秒。如果我在500毫秒内禁用此日期范围选择器。
在打字稿中:
$("input").daterangepicker({
minDate: moment().subtract(2, 'years'),
ranges: {
'Last 7 days': [moment().subtract(6, 'days'), moment()],
'Last 30 days': [moment().subtract(29, 'days'), moment()],
'Last 90 days': [moment().subtract(89, 'days'), moment()]
},
periods: ['day','month','quarter','year']
}, function (startDate:any, endDate:any, period:any) {
$(this).val(startDate.format('L') + ' – ' + endDate.format('L'))
that.ts = {
'startDate' : startDate,
'endDate' : endDate
}
});
<div class="form-group has-feedback" style="width: 100%; padding-top: 10px;">
<input type="text" class="form-control has-feedback" data-bind="
daterangepicker: dateRange1,
daterangepickerOptions: {
single: true,
standalone: true,
}
"/>
<span class="glyphicon glyphicon-calendar form-control-feedback" style="margin-top: 10px;"></span>
</div>