如何将今天的时间和日期与用户选择的日期进行比较。如果用户选择今天或明天的日期和时间是下午2点或超过下午2点,那么我应该显示提示交货时间。
我尝试过这样的事情
$scope.checkDateTime=function(){
angular.forEach($scope.orders.start_date,function(s){
console.log(s);
var curTime = moment().format('YYYY-MM-DD HH:mm:ss');
var orderTime = s+' 14:00:00';
console.log(moment(orderTime).diff(curTime,'seconds'));
if(moment(orderTime).diff(curTime,'seconds')>86400) {
console.log('hooray!')
}
})
}
我有orders.start_date
是ng-repeat中的输入字段,所以我使用forEach
循环。我只想检查所选日期是今天还是明天的日期。然后我必须检查时间,如果它超过下午2点,那么我不应该允许。否则我可以允许。
答案 0 :(得分:1)
我不确定可接受的订单期限何时开始(因为检查当天或明天是否意味着从00:00到14:00的一切都是公平的游戏),但这是一种方法来做到这一点根据您的代码:
$scope.checkDateTime = function(){
angular.forEach($scope.orders.start_date, function(s){
console.log(s);
var selectedTime = moment(s);
// create boundaries for time ranges
var today_end = moment("14:00","HH:mm"); // today 14:00
var today_start = moment().subtract(1,'day').endOf('day'); // end of yesterday (since we need to include 00:00 of today)
var tomorrow_end = moment("14:00","HH:mm").add(1,'day'); // tomorrow 14:00
var tomorrow_start = moment().endOf('day'); // end of today (since we need to include 00:00 of tomorrow)
// check if time in questions fits any of the ranges
if( ( selectedTime.isBetween(today_start, today_end) ||
( selectedTime.isBetween(tomorrow_start, tomorrow_end) )
console.log('hooray!')
}
})
}
请注意,isBetween(t1, t2)
不包括t1
和t2
到可接受的范围内。