8

如何格式化通过属性'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'}"
4

2 回答 2

13

您需要将值分配给变量

 <ng:pluralize ng-init="myCount=5000000" count="myCount" when="{'other': '{{myCount|number}} things'}"></ng:pluralize>

这会将值格式化为当前的语言环境规则

演示

于 2012-12-22T17:46:26.503 回答
1

扩展@Liviu T.'s answer,没有真正需要使用 ng-init 来分配变量。您可以直接在计数中进行。

<ng:pluralize count="myCount=5000000" when="{'other': '{{myCount|number}} things'}"></ng:pluralize>
于 2015-07-02T11:40:42.587 回答