如何格式化通过属性'count'传递给ng:pluralize指令的数字?
考虑以下代码:
<ng:pluralize count="5000000" when="{'other': '{} things'}"></pluralize>
输出是:
5000000 things
我如何修改它以使输出为:
5,000,000 things // in US locale
5 000 000 things // in Czech locale
我尝试使用过滤器“数字”,但我想我不知道该放在哪里。它在传递给属性“when”的对象中不起作用。我试过这些:
... when="{'many': '{{{}|number}} things'}"
... when="{'many': '{}|number things'}"
... when="{'many': '{|number} things'}"