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

时间:2013-10-15 07:39:55

标签: angularjs angularjs-directive

我正在处理我的问题:

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

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

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

我该怎么做?

11 个答案:

答案 0 :(得分:326)

简单的例子:

<div ng-style="isTrue && {'background-color':'green'} || {'background-color': 'blue'}" style="width:200px;height:100px;border:1px solid gray;"></div>

{'background-color':'green'} RETURN true

或者相同的结果:

<div ng-style="isTrue && {'background-color':'green'}" style="width:200px;height:100px;border:1px solid gray;background-color: blue"></div>

其他条件可能性:

<div ng-style="count === 0 && {'background-color':'green'}  || count === 1 && {'background-color':'yellow'}" style="width:200px;height:100px;border:1px solid gray;background-color: blue"></div>

答案 1 :(得分:118)

正如@Yoshi所说,从角度1.1.5开始,你可以毫无变化地使用它。

如果使用angular&lt; 1.1.5,您可以使用ng-class

.largeWidth {
    width: 100%;
}

.smallWidth {
    width: 0%;
}

// [...]

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

答案 2 :(得分:84)

你可以这样做:

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

答案 3 :(得分:42)

@jfredsilva显然有问题the simplest answer

  

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

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

类似三元的例子:

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

更复杂的事情:

<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。

angular.module('app',[]);
function MyCtrl($scope) {
  $scope.color = 'blueish';
  $scope.zoom = 2;
}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.1/angular.min.js"></script>
<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}}<br>
  zoom = {{zoom}}
</div>

答案 4 :(得分:10)

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

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

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

答案 5 :(得分:9)

在一般说明中,您可以使用ng-ifng-style的组合合并条件更改并更改背景图片。

<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>

答案 6 :(得分:4)

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

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

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

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

```

这允许对css属性值进行一些计算。

答案 7 :(得分:3)

对于单个CSS属性

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

对于以下多个CSS属性,可以参考

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

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

答案 8 :(得分:2)

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

<div ng-style="{{valueFromJS}} === 'Hello' ? {'color': 'red'} : {'color': ''} && valueFromNG-Repeat === '{{dayOfToday}}' ? {'font-weight': 'bold'} : {'font-weight': 'normal'}"></div>

答案 9 :(得分:2)

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

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

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

.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;
}

答案 10 :(得分:2)

编辑:

好吧,我以前不知道AngularJS通常是指Angular v1版本,并且仅从Angular到Angular v2 +

此答案仅适用于Angular

将此留在此处以供将来参考。


不知道它对你们如何工作,但是在Angular 9上,我必须将ngStyle包裹在这样的括号中:

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

否则它将无法正常工作