我使用角度的货币过滤器,似乎输出了一个额外的符号:Â。
html:
{{totals.subtotal | currency}} {{totals.tax | currency}} {{totals.total | currency}}
对象总数:
var totals = {subtotal: 500,tax: 65,total: 565};
输出:
Â$500.00 Â$65.00 Â$565.00
以前有人遇到过吗?我使用最新的角度1.0.6
更新:事实证明,角度的缩小导致了这一点。当我包括非最小角度时,它固定它。
是啊确认这是丑化的。
原文链接:https://www.f2er.com/angularjs/144418.html如果您使用ascii_only = true选项构建它,那么它似乎可以解决问题。