web-dev-qa-db-ja.com

angular 1.3の入力タイプ番号でのng-modelスローエラー

ユーザーに数値を入力してほしい入力フィールドがあるので、type = "number"の入力フィールドを作成しました。

1.2で使用してもエラーは発生しません

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.27/angular.min.js"></script>
<script>
    var app = angular.module('app', []);
    app.controller('MainCtrl', ['$scope', function ($scope) {
        $scope.person = [
            {"name": "Alex","pts": "10"}
        ];
    }]);
</script>
<div ng-app="app">
    <div ng-controller="MainCtrl">
        {{person | json }}<br>
        name: <span ng-bind="person[0].name"></span></br>
        <!-- pts: <input ng-model="person[0].pts"> -->
        pts: <input type="number" ng-model="person[0].pts"><br?
    </div>
</div>

http://codepen.io/anon/pen/dPKgVL

しかし、1.3で使用するとエラー:[ngModel:numfmt]が発生しますが、番号を更新してもスコープにバインドされているようです。

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
<script>
    var app = angular.module('app', []);
    app.controller('MainCtrl', ['$scope', function ($scope) {
        $scope.person = [
            {"name": "Alex","pts": "10"}
        ];
    }]);
</script>
<div ng-app="app">
    <div ng-controller="MainCtrl">
        {{person | json }}<br>
        name: <span ng-bind="person[0].name">
        name: <span ng-bind="person[0].name"></span></br>
        <!-- pts: <input ng-model="person[0].pts"> -->
        pts: <input type="number" ng-model="person[0].pts">
    </div>
</div>

http://codepen.io/anon/pen/YPvJro

私はここで何か悪いことをしていますか、これは心配することですか?他の問題をデバッグしようとしているときに、コンソールにエラーが表示されないようにしたい

12
ak85

ptsプロパティをnumberではなくstringとして定義します。

var app = angular.module('app', []);
app.controller('MainCtrl', ['$scope', function ($scope) {
    $scope.person = [
        {"name": "Alex","pts": 10}
    ];
}]);
11
net.uk.sweet

これを追加して問題を修正します。

myApp.directive('input', [function() {
    return {
        restrict: 'E',
        require: '?ngModel',
        link: function(scope, element, attrs, ngModel) {
            if (
                   'undefined' !== typeof attrs.type
                && 'number' === attrs.type
                && ngModel
            ) {
                ngModel.$formatters.Push(function(modelValue) {
                    return Number(modelValue);
                });

                ngModel.$parsers.Push(function(viewValue) {
                    return Number(viewValue);
                });
            }
        }
    }
}]);
19
KyleM

このディレクティブは、タイプ「数値」の入力の文字列値を解析します。その後、エラーは発生しません。

module.directive('input', function(){
    return {
        require: 'ngModel',
        link: function(scope, elem, attrs, ngModel){
            if(attrs.type == 'number'){
                ngModel.$formatters.Push(function(value){
                    return parseFloat(value);
                });
            }
        }
    };
});
8
chrmcpn

「10」前後の引用符を削除します。 Angularは数値を期待しており、文字列を与えています。

2
jlowcs

簡単な解決策のエラー「AngularJS Documentation for numfmt」解析タイプはIntまたはFloatです;-)

<input type="number" ng-model="inputNumDemo" />

....
    app.controller('Demo',[ '$scope', function($scope){

      // Input numeric convert String "10" to Int 10 or Float
      $scope.f.inputNumDemo = parseInt(d.data.inputDemo );

    }]);
....
2
Sergio

こんにちは、このコードをapp.jsに追加してください

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);
      });
    }
  };
});
0
Er Nilay Parekh