Show / Hide Table of Contents
-
Error Reference
- Error Reference
- $animate
- nongcls
- notcsel
- $cacheFactory
- iid
- $compile
- baddir
- badrestrict
- ctreq
- ctxoverride
- infchng
- iscp
- missingattr
- multidir
- multilink
- noctrl
- nodomevents
- nonassign
- noslot
- reqslot
- selmulti
- srcset
- tplrt
- uterdir
- $controller
- ctrlfmt
- ctrlreg
- noscp
- $http
- baddata
- badjsonp
- badreq
- $injector
- cdep
- itkn
- modulerr
- nomod
- pget
- strictdi
- undef
- unpr
- $interpolate
- badexpr
- dupvalue
- interr
- logicbug
- nochgmustache
- noconcat
- reqarg
- reqcomma
- reqendbrace
- reqendinterp
- reqopenbrace
- reqother
- unknarg
- unsafe
- untermstr
- wantstring
- $interval
- badprom
- $location
- badpath
- ipthprfx
- isrcharg
- nobase
- nostate
- $parse
- esc
- lexerr
- lval
- syntax
- ueoe
- $q
- norslvr
- qcycle
- $resource
- badargs
- badcfg
- badmember
- badname
- $rootScope
- infdig
- inprog
- $route
- norout
- $sanitize
- elclob
- noinert
- uinput
- $sce
- icontext
- iequirks
- imatcher
- insecurl
- itype
- iwcard
- unsafe
- $templateRequest
- tpload
- $timeout
- badprom
- filter
- notarray
- jqLite
- nosel
- offargs
- onargs
- linky
- notstring
- ng
- aobj
- areq
- badname
- btstrpd
- cpi
- cpta
- cpws
- test
- ngModel
- constexpr
- datefmt
- nonassign
- nopromise
- numfmt
- ngOptions
- iexp
- ngPattern
- noregexp
- ngRef
- noctrl
- nonassign
- ngRepeat
- badident
- dupes
- iexp
- iidexp
- ngTransclude
- orphan
- orderBy
- notarray
Loading …
There was an error loading this resource. Please try again later.
Improve this Doc
Error: ngModel:numfmt
Error: ngModel:numfmt
Model is not of type `number`
Contents
Expected `20.12` to be a number
Description
The input[number]
and input[range]
directives require the model to be a number
.
If the model is something else, this error will be thrown.
AngularJS does not set validation errors on the <input>
in this case
as this error is caused by incorrect application logic and not by bad input from the user.
If your model does not contain actual numbers then it is up to the application developer
to use a directive that will do the conversion in the ngModel
$formatters
and $parsers
pipeline.
Example
In this example, our model stores the number as a string, so we provide the stringToNumber
directive to convert it into the format the input[number]
directive expects.
<table>
<tr ng-repeat="x in ['0', '1']">
<td>
<input type="number" string-to-number ng-model="x" /> {{ x }} : {{ typeOf(x) }}
</td>
</tr>
</table>
angular.module('numfmt-error-module', [])
.run(function($rootScope) {
$rootScope.typeOf = function(value) {
return typeof value;
};
})
.directive('stringToNumber', function() {
return {
require: 'ngModel',
link: function(scope, element, attrs, ngModel) {
ngModel.$parsers.push(function(value) {
return '' + value;
});
ngModel.$formatters.push(function(value) {
return parseFloat(value);
});
}
};
});