gpt4 book ai didi

javascript - AngularJS 过滤器;将数字格式化为字符串,反之亦然?

转载 作者:行者123 更新时间:2023-11-30 11:35:09 25 4
gpt4 key购买 nike

我在这里读到 Angular JS 过滤器是:

  1. number 将数字格式化为字符串。

因此,我希望过滤器执行相反的转换,即从字符串到数字。但是,我找不到那个过滤器。


这是一个随机的、孤注一掷的尝试:

<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>

<div ng-app="myApp" ng-controller="ctrl">

<p>String to number {{ str | number }}</p>
<p>Number to string {{ num | string }}?</p> <!--This must be the problem -->

</div>

<script>
angular.module('myApp', []).controller('ctrl', function($scope) {
$scope.str = "3.14";
$scope.num = 3.14;
});
</script>

</body>
</html>

给出:

String to number {{ str | number }}

Number to string {{ num | string }}?

如果我只使用 number 过滤器,输出是 3.14。

最佳答案

根据 Angular documentation ,没有内置的字符串过滤器。虽然你可以很容易地建立一个 custom filter .

关于javascript - AngularJS 过滤器;将数字格式化为字符串,反之亦然?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44786662/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com