我正在使用 angular 的货币过滤器,它似乎输出了一个额外的符号:Â。
的HTML:
{{totals.subtotal | currency}}
{{totals.tax | currency}}
{{totals.total | currency}}
对象总计:
var totals = {subtotal: 500, tax: 65, total: 565};
输出:
Â$500.00
Â$65.00
Â$565.00
有没有人遇到过这个?我正在使用最新的 Angular 1.0.6
更新:事实证明,角度的缩小导致了这一点。当我包含非缩小角度时,它修复了它。