【发布时间】:2017-03-29 15:01:39
【问题描述】:
我想将内置过滤器 - 货币添加到我的自定义过滤器中。尝试在 Angular js 中做
(function(angular) {
'use strict';
angular
.module('testApp')
.filter('amount', function() {
return function(amount) {
if (!amount) {
return 'Invalid Amount';
} else {
//Here i want to add CURRENCY filter "| currency"
return amount;
}
}
})
})();
【问题讨论】:
-
返回“$”+金额;它不工作吗?
-
我想格式化像 $5,493,274.86 这样的货币