How to round in Javascript/Angular JS — but remove insignificant digits

前端 未结 3 1605
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-18 21:49

I have a the following statement in my Javascript controller:

$scope.myList = [0, 1, 0.5, 0.6666666];

My AngularJS template contains the follow

相关标签:
3条回答
  • 2021-02-18 22:22

    As the other answers didn't really work well, or did not not incorporate or work with Angular's $locale service, I wrote the following filter:

    Template:

    <span>{{yourNumber | roundTo: N}}</span>
    

    Filter:

    app.filter('roundTo', function(numberFilter) {
        return function(value, maxDecimals) {
            return numberFilter((value || 0)
                .toFixed(maxDecimals)
                .replace(/(?:\.0+|(\.\d+?)0+)$/, "$1")
            );
        }
    })
    

    • Rounds the number to the max number of decimals

    • Trims all trailing zero's

    • Removes the decimal seperator when it's not needed

    • And Uses Angular's $locale formatting

    0 讨论(0)
  • 2021-02-18 22:29

    You could just multiple by 1 to convert it to true value.

    <div ng-repeat="i in myList">{{(i | number:2)*1}}</div>
    

    As noted from the comments above solution will break due to the locale formatting by angular number filter. If you need the locale formatting and rounding you could create an extension filter which underneath uses number filter and $locale service.

    .filter('numberEx', ['numberFilter', '$locale',
      function(number, $locale) {
    
        var formats = $locale.NUMBER_FORMATS;
        return function(input, fractionSize) {
          //Get formatted value
          var formattedValue = number(input, fractionSize);
    
          //get the decimalSepPosition
          var decimalIdx = formattedValue.indexOf(formats.DECIMAL_SEP);
    
          //If no decimal just return
          if (decimalIdx == -1) return formattedValue;
    
    
          var whole = formattedValue.substring(0, decimalIdx);
          var decimal = (Number(formattedValue.substring(decimalIdx)) || "").toString();
    
          return whole +  decimal.substring(1);
        };
      }
    ]);
    

    And use it as:

      <div ng-repeat="i in myList">{{i | numberEx:2}}</div>
    

    Demo

    angular.module('app', []).controller('ctrl', function($scope) {
    
      $scope.myList = [0, 10000.56, 0.5, 0.6666666, -1000.23123, 1, 1002, 2.5, 30.5, 22];
    
    }).filter('numberEx', ['numberFilter', '$locale',
      function(number, $locale) {
    
        var formats = $locale.NUMBER_FORMATS;
        return function(input, fractionSize) {
          //Get formatted value
          var formattedValue = number(input, fractionSize);
    
          //get the decimalSepPosition
          var decimalIdx = formattedValue.indexOf(formats.DECIMAL_SEP);
          
          //If no decimal just return
          if (decimalIdx == -1) return formattedValue;
    
     
          var whole = formattedValue.substring(0, decimalIdx);
          var decimal = (Number(formattedValue.substring(decimalIdx)) || "").toString();
          
          return whole +  decimal.substring(1);
        };
      }
    ]);
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
    <div ng-app="app" ng-controller="ctrl">
      <div ng-repeat="i in myList">{{i | numberEx:2}}</div>
    </div>

    0 讨论(0)
  • 2021-02-18 22:31

    I would do it like this:

    <div ng-repeat="i in myList">{{formatNumber(i)}}</div>
    

    and in your controller:

    $scope.formatNumber = function(i) {
        return Math.round(i * 100)/100; 
    }
    
    0 讨论(0)
提交回复
热议问题