gpt4 book ai didi

javascript - Angular 日期选择器不触发 ng-change

转载 作者:行者123 更新时间:2023-11-30 11:41:57 25 4
gpt4 key购买 nike

我在使用 ng-change 的日期选择器中遇到问题。当我通过“单击日期”更改值时,ng-change 事件不会触发,但当我通过“输入日期”更改值时,它会起作用。

这是我的代码。

<input ng-change="date_change();" ng-model="date_to" id="recon-date" name= "date_to" type="text" class="form-control" date-time view="month" auto-close="true" min-view="month" format="MM-DD-YYYY">

我通过调查 datepicker.js 来跟踪问题。我发现(如果我是正确的话)ngModelController.serViewValue() 和 $render() 没有触发 ng-change。

我尝试添加 scope.$apply() 但没有成功。我调试了几个小时,但仍然没有任何进展。

附言我不想使用 $scope.$watch() 来解决这个问题。

谢谢!!

最佳答案

没有ng-change,使用watch

$scope.date_to;

$scope.$watch("date_to", function(newValue, oldValue) {
console.log("I've changed : ", to date);
});

关于javascript - Angular 日期选择器不触发 ng-change,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42323602/

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