gpt4 book ai didi

javascript - AngularJS 货币过滤器 - 欧元

转载 作者:搜寻专家 更新时间:2023-10-31 08:40:47 28 4
gpt4 key购买 nike

我正在使用 AngularJS 货币过滤器,但在正确显示欧元符号时遇到了问题。

HTML:

{{ price.priceTotal | currency: myController.getPriceCurrency() }}

Controller :

getPriceCurrency() {
return `€ `;
}

注意 - 在上述方法中,我只是返回欧元符号的代码,但此方法返回的货币可以是任何货币,具体取决于所选货币.

我遇到的问题是货币符号显示不正确。它显示为 €例如 50,但我希望它显示为 50 欧元。我尝试将 getPriceCurrency 方法中的返回值直接设置为欧元符号 €,但最终会显示为 ??? (三个问号)一旦部署了代码。

我可以采取任何其他解决方法来正确显示欧元和其他货币符号吗?

谢谢

最佳答案

您可以使用 ngSanitize 模块的 $sce 来执行此操作。这是为了确保可以信任 html 并防止任何易受攻击的 XSS 攻击。 Angular 不会将字符串 直接转换为欧元符号。

var app = angular.module("app", ["ngSanitize"]);
app.controller("myCtrl", function($scope, $filter,$sce) {
var vm =this;
vm.price=100;
vm.getPriceCurrency=function() {
return `€ `; // return any currency
}
});
app.filter('unsafe', function($sce) {
return $sce.trustAsHtml;
});
<!DOCTYPE html>
<html ng-app="app">
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.5/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-sanitize/1.6.5/angular-sanitize.js"></script>
</head>
<body ng-controller="myCtrl as myController">
<!-- binding the currency to html -->
<div ng-bind-html="myController.price | currency: myController.getPriceCurrency()| unsafe">
</div>
</body>
</html>

关于javascript - AngularJS 货币过滤器 - 欧元,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45993683/

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