填写这份《一分钟调查》,帮我们(开发组)做得更好!去填写Home

I18nPluralPipe

将值映射到根据语言环境规则对该值进行复数化的字符串。

Maps a value to a string that pluralizes the value according to locale rules.

      
      {{ value_expression | i18nPlural : pluralMap [ : locale ] }}
    

Exported from

输入值

value number

要格式化的数字

the number to be formatted

参数

pluralMap object

模仿 ICU 格式的对象,请参见http://userguide.icu-project.org/formatparse/messages

an object that mimics the ICU format, see http://userguide.icu-project.org/formatparse/messages.

locale string

定义要使用的语言环境的 string(默认情况下使用当前的 LOCALE_ID)。

a string defining the locale to use (uses the current LOCALE_IDby default).

可选. 默认值是 `undefined`.

使用说明

例子

Example

      
      @Component({
  selector: 'i18n-plural-pipe',
  template: `<div>{{ messages.length | i18nPlural: messageMapping }}</div>`
})
export class I18nPluralPipeComponent {
  messages: any[] = ['Message 1'];
  messageMapping:
      {[k: string]: string} = {'=0': 'No messages.', '=1': 'One message.', 'other': '# messages.'};
}