Angular Js currency, symbol euro after
问题 How to move the symbol euro from the front of the value to after it? Example: {{product.price | currency : "€"}} will produce € 12.00 but I would like 12.00 € 回答1: You don't have to hack the currency filter! AngularJS has a great support for i18n/l10n. The currency filter uses the default currency symbol from the locale service and positions it based on the locale settings. So it's all about supporting and setting the right locale. <script src="i18n/angular-locale_de-de.js"></script> If you