Я хочу установить текущую дату как минимальную дату в DatePicker.
Вот мой HTML-код,
<div class="form-group filled col-lg-3">
<input type="text" class="form-control" ng-model="currentTask.planDate" data-start-week="1" placeholder="Select a date" bs-datepicker data-min-date="minDate" data-autoclose="true" data-timezone="UTC" required>
</div>
и мой JavaScript,
$scope.getMaintanceDate = function () {
currentTask.planDate = new Date();
minDate = new Date(
currentTask.planDate.getFullYear(),
currentTask.planDate.getMonth(),
currentTask.planDate.getDate()
);
$scope.currentTask.planDate = minDate;
$scope.currentTask = JSON.parse($scope.currentTask);
}
IЯ довольно новичок в Angularjs, поэтому я не понимаю, логика также ясно. Так что я не знаю, что мне делать.