我是离子2的新手。我有日历,因为它显示当前日期到未来日期。我想在2天后启用当前日期和现在日期。我怎样才能实现这一目标?
以下是我尝试的ts文件代码:
var current = new Date();
current.setHours(0, 0, 0);
for(var i=current; i<current+2; i++)
else {
return true;
}
return date < current ;
任何人都可以帮助我..