具有条件表达式的AngularJS ng样式


267

我正在这样处理我的问题:

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

但是为了避免在控制器端具有此功能,我更喜欢这样做:

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

我怎样才能做到这一点?


17
您使用的是哪个版本的angular?至少对于1.1.5,这是可能的,无需进行任何更改。演示
Yoshi

我正在使用1.0.8 :)太糟糕了,我真的应该尝试升级...谢谢!
TigrouMeow

4
尽管使用1.1.5的代码可以正常工作,但是如果您使用其他样式属性而不是宽度(例如font-size),则只有将其更改为ng-style =“ { 'font-size': myObject.value =='确定'?'20px':'10px'}“(必须在style属性中加上引号)。
BornToCode

我不知道这有什么用,但是对于新手,您可以对对象使用ng样式,但是像这样ng-style =“ objectBit?{'border':'1px solid red'}:{'border':'none'}”
Usman I

Answers:


124

正如@Yoshi所说,从1.1.5角度开始,您可以使用它而无需进行任何更改。

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

.largeWidth {
    width: 100%;
}

.smallWidth {
    width: 0%;
}

// [...]

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

3
好的谢谢!我只是想知道是否有一种方法可以不使用任何类,而是直接在模板上使用Angular。
TigrouMeow

1
如何将其用于多个类名?
Thanigainathan

3
如果我使用的是> 1.1.5?
bigpony

14
这不能完全回答问题。

1
这个问题从字面上要求使用ng-style的示例,但接受的100票以上的答案没有提供该示例。
JWiley

361

简单的例子:

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

{'background-color':'green'}返回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>

如何使用多个独立样式/条件来完成此任务?谢谢,很好的回答。
亚当·普洛彻

@Arthur您的示例将要进行检查isTrue {'background-color':'green'} 或者仅将进行检查isTrue,并background 说明其工作原理,请向任何人解释?
Rajnish Rajput,

1
@ rajnish-rajput它将检查isTrue并放置背景,{'background-color':'green'}默认返回true作为样式对象
Arthur Tsidkilov


43

@jfredsilva显然是该问题的最简单答案

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>


有趣的语法{<value>:'<string>'}[<$scope.var>]},它来自哪里?
netalex

10

如果要与表达式一起使用,则正确的方法是:

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

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


Syntax Error: Token '%3A' is%20an%20unexpected%20token at column 9 of the expression [ng-style%3A%...
Z. Khullah

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>

Uncaught Error: Template parse errors: Can't bind to 'ng-style' since it isn't a known property of 'div'对我造成了错误
Serj Sagan

6

对于单个CSS属性

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

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

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

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


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属性值进行一些计算。


3

对于多个独立的条件,我正在执行以下操作,它的作用就像魅力:

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

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

-1

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

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

否则不起作用

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.