angular.js中的内联条件用于添加复数单词

时间:2015-11-19 10:33:43

标签: angularjs

我尝试以角度制作条件,但我遇到了问题。

我希望当长度为:0和1加载此=选择的产品

并且是!= 1加载此=选择的产品。

我试着吼叫,但我无法做出任何帮助?谢谢。

<h1 class="text-left" ng-show="section.selected_obj.length == 0 || == 1">{{product.title}} ({{product.selected_obj.length}}) product selected</h1>


<h1 class="text-left" ng-show="section.selected_obj.length != 1">{{product.title}} ({{product.selected_obj.length}}) products selected</h1>

1 个答案:

答案 0 :(得分:1)

试试这样。

<h1 class="text-left">{{product.title}} ({{product.selected_obj.length}}) product{{section.selected_obj.length > 1 ? 's' : ''}} selected</h1>