本文介绍了$第一ngRepeat的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个数组 $ scope.items
。
我想,如果该项目是的添加CSS类在
。
有什么事情可以用角做什么?一般来说,我怎么可以处理布尔在AJS?
< DIV NG重复=项中的项目>
< DIV CLASS =''> {{item.title}}< / DIV>
< / DIV>
解决方案
这应该是
< DIV NG重复=项中的项目>
< DIV纳克级='{在:$第一}'> {{item.title}}< / DIV>
< / DIV>
看纳克级
指令http://docs.angularjs.org/api/ng.directive:ngClass而这SO THEAD What是有条件地适用于一类angularjs的最佳方式?
I have an array $scope.items
.
I want if the item is the $first
one of the ngRepeat to add the css class in
.
Is it something that can be done with angular? Generally how can I handle the booleans in Ajs?
<div ng-repeat="item in items">
<div class='' > {{item.title}}</div>
</div>
解决方案
It should be
<div ng-repeat="item in items">
<div ng-class='{in:$first}' > {{item.title}}</div>
</div>
Look at ng-class
directive http://docs.angularjs.org/api/ng.directive:ngClass and this SO thead What is the best way to conditionally apply a class with angularjs?
这篇关于$第一ngRepeat的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!