在 AngularJS 中,我在 DOM 方面有:<input class="form-control" type="date" ng-model="scope.status.date" ng-change="scope.reloadDay()" ng-model-options="{debounce:200}">在后面我有一个功能:scope.changeDate = function() { var current_date = scope.status.date; current_date.setDate(current_date.getDate() - 1); scope.status['date'] = current_date;}结果确实scope.status.date更新了,但在输入框中它保持不变。这里发生了什么?
添加回答
举报
0/150
提交
取消