我创建了以下plunker来显示我的问题:
http://embed.plnkr.co/8b4GTlRwYGKjmbcjgNvT/preview
基本上,当绑定到输入的值超过ng-max值时,绑定会丢失,这在某种程度上是有意义的,但是当我清除输入/模型时。价值没有清除,有什么想法吗?
谢谢,
肯
答案 0 :(得分:2)
好吧,你的clearValues函数会破坏$scope.item
内的所有内容,而不是只重置$scope.item.currentValue
尝试更像......
$scope.clearValues = function() {
$scope.item.currentValue = 0;
};