具有条件表达式的AngularJS ng-style

AngularJS ng-style with a conditional expression

我这样处理我的问题:

1
ng-style="{ width: getTheValue() }"

但为了避免在控制器端具有此功能,我更愿意做这样的事情:

1
ng-style="{ width: myObject.value == 'ok' ? '100%' : '0%' }"

我怎样才能做到这一点?


简单的例子:

1
 

{'background-color':'green'}返回true

或者相同的结果:

1
 

其他条件可能性:

1
 


正如@Yoshi所说,从角度1.1.5你可以使用它 - 没有任何改变。

如果使用angular <1.1.5,则可以使用ng-class。

1
2
3
4
5
6
7
8
9
10
11
.largeWidth {
    width: 100%;
}

.smallWidth {
    width: 0%;
}

// [...]

ng-class="{largeWidth: myVar == 'ok', smallWidth: myVar != 'ok'}"


你可以这样做:

1
ng-style="{ 'width' : (myObject.value == 'ok') ? '100%' : '0%' }"

@jfredsilva显然对这个问题有最简单的答案:

ng-style="{ 'width' : (myObject.value == 'ok') ? '100%' : '0%' }"

但是,你可能真的想考虑我对更复杂的事情的回答。

类似三元的例子:

1
2
<p ng-style="{width: {true:'100%',false:'0%'}[myObject.value == 'ok']}">
</p>

更复杂的东西:

1
2
3
4
5
<p ng-style="{
   color:       {blueish: 'blue', greenish: 'green'}[ color ],
  'font-size':  {0: '12px', 1: '18px', 2: '26px'}[ zoom ]
}">Test
</p>

如果$scope.color == 'blueish',颜色将为"蓝色"。

如果$scope.zoom == 2,则字体大小为26px。

1
2
3
4
5
angular.module('app',[]);
function MyCtrl($scope) {
  $scope.color = 'blueish';
  $scope.zoom = 2;
}
1
2
3
4
5
6
7
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.1/angular.min.js">
<div ng-app="app" ng-controller="MyCtrl" ng-style="{
   color:       {blueish: 'blue', greenish: 'green'}[ color ],
  'font-size':  {0: '12px', 1: '18px', 2: '26px'}[ zoom ]
}">
  color = {{color}}
  zoom = {{zoom}}


如果你想使用表达式,那么严格的方法是:

1
<span class="ng-style: yourCondition && {color:'red'};">Sample Text</span>

但最好的方法是使用ng-class


在通用注释中,您可以使用ng-ifng-style的组合将条件更改与背景图像中的更改结合在一起。

1
2
3
4
<span ng-if="selectedItem==item.id"
              ng-style="{'background-image':'url(../images/'+'{{item.id}}'+'_active.png)','background-size':'52px 57px','padding-top':'70px','background-repeat':'no-repeat','background-position': 'center'}"></span>
        <span ng-if="selectedItem!=item.id"
              ng-style="{'background-image':'url(../images/'+'{{item.id}}'+'_deactivated.png)','background-size':'52px 57px','padding-top':'70px','background-repeat':'no-repeat','background-position': 'center'}"></span>


对于单个css属性

1
ng-style="1==1 && {'color':'red'}"

对于下面的多个css属性,可以参考

1
ng-style="1==1 && {'color':'red','font-style': 'italic'}"

用条件表达式替换1 == 1


这个三元运算符的语法也可以工作:

1
2
3
4
5
6
7
  ng-style="<$scope.var><condition> ? {
        '<css-prop-1>':((<value>) / (<value2>)*100)+'%',
        '<css-prop-2>':'<string>'
      } : {
        '<css-prop-1>':'<string>',
        '<css-prop-2>':'<string>'
      }"

其中是$ scope属性值。
例如:

1
2
3
4
5
6
7
8
ng-style="column.histograms.value=>0 ?
  {
    'width':((column.histograms.value) / (column.histograms.limit)*100)+'%',
    'background':'#F03040'
  } : {
    'width':'1px',
    'background':'#2E92FA'
  }"

```

这允许一些计算器进入css属性值。


我使用ng-class添加样式: -

1
2
3
4
 ng-class="column.label=='Description'  ? 'tableStyle':                    
           column.label == 'Markdown Type' ? 'Mtype' :
           column.label == 'Coupon Number' ? 'couponNur' :  ''
          "

使用三元运算符和angular.js中的ng-class指令来给出样式。
然后在.css或.scss文件中定义类的样式。例如: -

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.Mtype{
       width: 90px !important;
       min-width: 90px !important;
       max-width: 90px !important;
      }
.tableStyle{
         width: 129px !important;
         min-width: 129px !important;
         max-width: 129px !important;
}
.couponNur{
         width: 250px !important;
         min-width: 250px !important;
         max-width: 250px !important;
}

我在下面做了多个独立的条件,它就像魅力一样:

1