AngularJS中的$ modelValue是什么?
我在这里阅读:https://groups.google.com/forum/#!topic/angular/ZcA4eOttQzA
至于知道ngModel的价值何时发生变化,我有两种方法可以做到这一点。 一个是通过重写ngModelController的$ render函数。 另一种经验证明更可靠的方法是使用示波器。$ watch与前面提到的功能一起使用。 例如:
需要:“ngModel”,链接:函数链接(范围,元素,attrs,ngModelCtrl){scope。$ watch(function(){return scope。$ modelValue;},function(value){//用更新后的模型值...}); }
我在我的代码中尝试了这一点,但唯一一次启动是在一开始。 有人可以解释什么范围。$ modelValue究竟是什么?
$modelValue: The value in the model, exposed to your controller.
有两个ngModel
数据的视图。 $viewValue
是DOM
上的视图。 $modelView
是控制器对模型的实际价值。