Angular模板语法中的复数表达式是什么?

时间:2019-03-27 20:45:39

标签: angular angular2-template

Webstorm为Angular模板提供了语法高亮选项,这些选项之一称为“复数表达式”。

从屏幕快照中可以看到,它只有一组花括号,逗号具有特殊含义,还有其他奇怪的地方,我在Angular的模板语法中没有其他地方了。

这是什么?

enter image description here

1 个答案:

答案 0 :(得分:0)

复数的用法如下

{totalItemCount, plural, =0 {no files} =1 {1 file} other { {{totalItemCount | number}} files } selected

因此基于totalItemCount如果为0,则输出no files,如果基于1,则输出1 file,否则选择的项目数+ selected

输出将类似于

no file selected
1 file selected
15 files selected

有一个教程here

还有与NgPlural等效的