最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Angularjs and Number.NaN - Stack Overflow

programmeradmin2浏览0评论

I was going through the angular docs when I ran into this:

.js/blob/master/src/ng/directive/input.js#L1556

Notice that this.$viewValue = Number.NaN;

Not just in this doc but in other angular docs as well.

What is the advantage/disadvantage of doing it this way vs. just setting it as undefined or null?

I was going through the angular docs when I ran into this:

https://github./angular/angular.js/blob/master/src/ng/directive/input.js#L1556

Notice that this.$viewValue = Number.NaN;

Not just in this doc but in other angular docs as well.

What is the advantage/disadvantage of doing it this way vs. just setting it as undefined or null?

Share Improve this question edited May 25, 2014 at 0:29 Dave Alperovich 32.5k8 gold badges82 silver badges101 bronze badges asked May 22, 2014 at 12:49 user1460015user1460015 2,0033 gold badges29 silver badges37 bronze badges 0
Add a ment  | 

2 Answers 2

Reset to default 5 +50

In AgularJS specific terms:

$viewValue

Actual string value in the view.

$modelValue

The value in the model, that the control is bound to.

So, if you have an input, the value within it is in the form of a string. If you display model value or interpolated value as markup, {{ myInt }} or {{ 5 + 5 }}, it will be displayed as string.

This is because HTML is a language of text, while JS is a language of functions and values. So, to handle this dual mode for double binding, AngularJS uses $viewValue service for the "display" value of a model field and uses the $modelValue to track the "actual" value.

The "display" value should never "undefined", because interpolation of an undefined model should not raise an error. and the "display" value should never be a number. So, before it is a formal string (interpolation of $modelValue), it is a NaN.

My guess would be that they use Nan because, according to Section 4.3.23 of ECMAScript Language Specification NaN is defined as:

number value that is a IEEE 754 “Not-a-Number” value

So it's a number and not something undefined or null. The value is explained further in Section 8.3

Equality parisons with NaN are defined in Section 11.9.3:

The parison x == y, where x and y are values, produces true or false. Such a parison is performed as follows: If Type(x) is Number, then:

If x is NaN, return false.

If y is NaN, return false.

So For the purpose of parison , isNaN() should be used instead:

isNaN(NaN)
// true
发布评论

评论列表(0)

  1. 暂无评论