NgPlural

NgPlural

Experimental Directive

What it does

Adds / removes DOM sub-trees based on a numeric value. Tailored for pluralization.

How to use

<some-element [ngPlural]="value">
  <template ngPluralCase="=0">there is nothing</template>
  <template ngPluralCase="=1">there is one</template>
  <template ngPluralCase="few">there are a few</template>
</some-element>

Class Overview

class NgPlural {
  constructor(_localization: NgLocalization)
  
  
  ngPlural 
  addCase(value: string, switchView: SwitchView) : void
}

Selectors

[ngPlural]

Class Description

Displays DOM sub-trees that match the switch expression value, or failing that, DOM sub-trees that match the switch expression's pluralization category.

To use this directive you must provide a container element that sets the [ngPlural] attribute to a switch expression. Inner elements with a [ngPluralCase] will display based on their expression:

  • if [ngPluralCase] is set to a value starting with =, it will only display if the value matches the switch expression exactly,
  • otherwise, the view will be treated as a "category match", and will only display if exact value matches aren't found and the value maps to its category for the defined locale.

See http://cldr.unicode.org/index/cldr-spec/plural-rules

Constructor

constructor(_localization: NgLocalization)

Class Details

ngPlural
addCase(value: string, switchView: SwitchView) : void

exported from @angular-common-index, defined in @angular/common/src/directives/ng_plural.ts

© 2010–2017 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v2.angular.io/docs/ts/latest/api/common/index/NgPlural-directive.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部