我是这样处理我的问题的:

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

但是为了避免在控制器端使用这个函数,我更倾向于这样做:

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

我该怎么做呢?


当前回答

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

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

然而,你可能真的想考虑我对一些更复杂的问题的回答。

Ternary-like例子:

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

如果美元范围。Color == 'blueish',则颜色为'blue'。

如果美元范围。缩放== 2,字体大小为26px。

angular.module(“应用程序”,[]); 函数MyCtrl($scope) { 美元的范围。Color = '略带蓝色'; 美元的范围。缩放= 2; } < script src = " https://ajax.googleapis.com/ajax/libs/angularjs/1.0.1/angular.min.js " > < /脚本> <div ng-app="app" ng-controller="MyCtrl" ng-style="{ 颜色:{blueish: 'blue', greenish: 'green'}[Color], “字体大小”:{0:12 px, 1: 18 px, 2:“26 px”}(放大) }" > Color = {{Color}}<br> 缩放={{缩放}} < / div >

其他回答

就像@Yoshi说的,从angular 1.1.5开始你就可以不用做任何改变就可以使用它了。

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

.largeWidth {
    width: 100%;
}

.smallWidth {
    width: 0%;
}

// [...]

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

一般来说,您可以结合使用ng-if和ng-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>

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

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

然而,你可能真的想考虑我对一些更复杂的问题的回答。

Ternary-like例子:

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

如果美元范围。Color == 'blueish',则颜色为'blue'。

如果美元范围。缩放== 2,字体大小为26px。

angular.module(“应用程序”,[]); 函数MyCtrl($scope) { 美元的范围。Color = '略带蓝色'; 美元的范围。缩放= 2; } < script src = " https://ajax.googleapis.com/ajax/libs/angularjs/1.0.1/angular.min.js " > < /脚本> <div ng-app="app" ng-controller="MyCtrl" ng-style="{ 颜色:{blueish: 'blue', greenish: 'green'}[Color], “字体大小”:{0:12 px, 1: 18 px, 2:“26 px”}(放大) }" > Color = {{Color}}<br> 缩放={{缩放}} < / div >

我正在使用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;
}

对于多个独立的条件,我像下面这样做,它很有魅力:

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