gpt4 book ai didi

javascript - AngularJS:如何使用 ng-repeat 添加类

转载 作者:行者123 更新时间:2023-11-30 09:43:02 25 4
gpt4 key购买 nike

在我的标记中,我使用 ng-repeat 向每个 li 元素添加文本,而且我想添加一个类(除了“fa”类)。到目前为止,我正在这样做:

<ul class='social-icons' ng-repeat="social in myCtrl.socialArr">
<li><i class="fa" ng-class={{social.iconClass}}></i><label>{{social.label}}</label></li>
</ul>

..但它不起作用

在我的 Controller 中我有:

self.socialArr = [
{
label: 'Facebook',
url: 'facebook.com/',
iconClass: 'fa-facebook'
},{
label: 'Twitter',
url: 'twitter.com/',
iconClass: 'fa-twitter'
}...

最佳答案

试试这个

<ul class='social-icons'>
<li ng-repeat="social in myCtrl.socialArr">
<i class="fa" ng-class="social.iconClass"></i>
<label>{{social.label}}</label>
</li>
</ul>

关于javascript - AngularJS:如何使用 ng-repeat 添加类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40196573/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com