gpt4 book ai didi

angularjs - 无法从 AngularJS 中的 Controller 设置日期选择器日期

转载 作者:行者123 更新时间:2023-12-03 08:24:49 25 4
gpt4 key购买 nike

我正在尝试按一下按钮创建一个 AngularJS 日期选择器。我正在使用 this bootstrap-ui 控件。该控件有效(单击按钮弹出,我可以选择一个日期),但我似乎无法从范围中设置初始日期(这样当它第一次打开时,指定的日期已经已选中)。

我在 Chrome 控制台中得到的错误是:

Datepicker directive: "ng-model" value must be a Date object, a number of milliseconds since 01.01.1970 or a string representing an RFC2822 or ISO 8601 date.

Jade :

button(type="button" ng-model="date.from" btn-radio="'From'" ng-click="date.openFromPopup($event);" show-weeks="false" show-button-bar="false" datepicker-popup = "date.format" is-open = "date.fromOpened" min = "date.minDate" max = "date.today") From

因为我在 $scope.date.from 上有 watch ,所以我可以确认所选日期是正确的,但我永远无法从 Controller 设置它。有什么想法吗?

AngularJS Controller :

$scope.date = {};

$scope.date.format = "yyyy/MM/dd";
$scope.date.opened = false;
$scope.date.from = new Date();
$scope.date.today = new Date();
$scope.date.minDate = null;
$scope.date.fromOpened = false;

$scope.$watch('date.from', function(v) {
if(v){
alert(v);
}
});

最佳答案

在angular-ui页面的例子中,它说要像这样使用它......

$scope.from = function() {
$scope.dt = new Date();
};
$scope.from();

这样行吗?

关于angularjs - 无法从 AngularJS 中的 Controller 设置日期选择器日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21341806/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com