diff options
| author | Codier | 2011-11-15 18:45:36 -0600 |
|---|---|---|
| committer | Igor Minar | 2011-11-21 15:43:12 -0800 |
| commit | 29f9e2665d8b771a6226870fc8fd2c4c94d7a2c0 (patch) | |
| tree | c48f91fea9b97b10b13d4e1ec636e6cd7995578e /src/service/scope.js | |
| parent | 8d1944851d5bbecd9277ede8c4a354c2d43796ee (diff) | |
| download | angular.js-29f9e2665d8b771a6226870fc8fd2c4c94d7a2c0.tar.bz2 | |
fix(scope): $watch (and angular.equals) should support NaN values
- since NaN !== NaN in javascript digest can get into an infinite loop
when model value is set to NaN
- angular.equals(NaN, NaN) should return true since that's what we
expect when comparing primitives or objects containing NaN values
Previously NaN because of its special === properties was used as the
initial value for watches, but that results in issues when NaN is used
as model value.
In order to allow for model to be anything incuding undefined and NaN we
need to mark the initial value differently in a way that would avoid
these issues, allow us to run digest without major perf penalties and
allow for clients to determine if the listener is being called because
the watcher is being initialized or because the model changed. This
implementation covers all of these scenarios.
BREAKING CHANGE: previously to detect if the listener was called because
the watcher was being initialized, it was suggested that clients check
if old value is NaN. With this change, the check should be if the newVal
equals the oldVal.
Closes #657
Diffstat (limited to 'src/service/scope.js')
| -rw-r--r-- | src/service/scope.js | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/src/service/scope.js b/src/service/scope.js index df969cfc..cbda4495 100644 --- a/src/service/scope.js +++ b/src/service/scope.js @@ -187,7 +187,8 @@ function $RootScopeProvider(){ * reruns when it detects changes the `watchExpression` can execute multiple times per * {@link angular.module.ng.$rootScope.Scope#$digest $digest()} and should be idempotent.) * - The `listener` is called only when the value from the current `watchExpression` and the - * previous call to `watchExpression' are not equal. The inequality is determined according to + * previous call to `watchExpression' are not equal (with the exception of the initial run + * see below). The inequality is determined according to * {@link angular.equals} function. To save the value of the object for later comparison * {@link angular.copy} function is used. It also means that watching complex options will * have adverse memory and performance implications. @@ -201,6 +202,13 @@ function $RootScopeProvider(){ * can execute multiple times per {@link angular.module.ng.$rootScope.Scope#$digest $digest} cycle when a change is * detected, be prepared for multiple calls to your listener.) * + * After a watcher is registered with the scope, the `listener` fn is called asynchronously + * (via {@link angular.module.ng.$rootScope.Scope#$evalAsync $evalAsync}) to initialize the + * watcher. In rare cases, this is undesirable because the listener is called when the result + * of `watchExpression` didn't change. To detect this scenario within the `listener` fn, you + * can compare the `newVal` and `oldVal`. If these two values are identical (`===`) then the + * listener was called due to initialization. + * * * # Example <pre> @@ -244,7 +252,7 @@ function $RootScopeProvider(){ array = scope.$$watchers, watcher = { fn: listenFn, - last: Number.NaN, // NaN !== NaN. We used this to force $watch to fire on first run. + last: initWatchVal, get: get, exp: watchExp }; @@ -345,7 +353,7 @@ function $RootScopeProvider(){ if ((value = watch.get(current)) !== (last = watch.last) && !equals(value, last)) { dirty = true; watch.last = copy(value); - watch.fn(current, value, last); + watch.fn(current, value, ((last === initWatchVal) ? value : last)); if (ttl < 5) { if (!watchLog[4-ttl]) watchLog[4-ttl] = []; if (isFunction(watch.exp)) { @@ -669,6 +677,10 @@ function $RootScopeProvider(){ return fn; } - + /** + * function used as an initial value for watchers. + * because it's uniqueue we can easily tell it apart from other values + */ + function initWatchVal() {} }]; } |
