複数のngクラスを追加するために複数の式を使用できますか?
例えば。
<div ng-class="{class1: expressionData1, class2: expressionData2}"></div>
そうであれば誰でもそうするように例を提出することができます。
。
式がtrue
と評価されるときに異なるクラスを適用するには、次のようにします。
<div ng-class="{class1 : expression1, class2 : expression2}">
Hello World!
</div>
式が成り立つときに複数のクラスを適用するには:
<!-- notice expression1 used twice -->
<div ng-class="{class1 : expression1, class2 : expression1}">
Hello World!
</div>
または非常に簡単に:
<div ng-class="{'class1 class2' : expression1}">
Hello World!
</div>
CSSクラスを囲む一重引用符に注意してください。
はい、ng-classに複数のクラスを追加するために複数の式を持つことができます。
例えば:
<div ng-class="{class1:Result.length==2,class2:Result.length==3}"> Dummy Data </div>
三項演算子表記法の場合:
<div ng-class="expression1? 'class1 class2' : 'class3 class4'">
ここに他の答えに信じられないほど強力な代替手段:
ng-class="[ { key: resulting-class-expression }[ key-matching-expression ], .. ]"
いくつかの例:
1. divに 'class1 class2 class3'を追加するだけです。
<div ng-class="[{true: 'class1'}[true], {true: 'class2 class3'}[true]]"></div>
2. $ indexに応じて、divに「奇数」または「偶数」クラスを追加します。
<div ng-class="[{0:'even', 1:'odd'}[ $index % 2]]"></div>
3. $ indexに基づいてdivごとにクラスを動的に作成します。
<div ng-class="[{true:'index'+$index}[true]]"></div>
$index=5
の場合、これは次のようになります。
<div class="index5"></div>
これはあなたが走らせることができるコードサンプルです:
var app = angular.module('app', []);
app.controller('MyCtrl', function($scope){
$scope.items = 'abcdefg'.split('');
});
.odd { background-color: #eee; }
.even { background-color: #fff; }
.index5 {background-color: #0095ff; color: white; font-weight: bold; }
* { font-family: "Courier New", Courier, monospace; }
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.1/angular.min.js"></script>
<div ng-app="app" ng-controller="MyCtrl">
<div ng-repeat="item in items"
ng-class="[{true:'index'+$index}[true], {0:'even', 1:'odd'}[ $index % 2 ]]">
index {{$index}} = "{{item}}" ng-class="{{[{true:'index'+$index}[true], {0:'even', 1:'odd'}[ $index % 2 ]].join(' ')}}"
</div>
</div>
コントローラの$scope
メソッドを使用して、ビューに出力するクラスを計算できます。これは、クラス名を計算するための複雑なロジックがあり、それをコントローラに移動することでビュー内のロジックの量を減らす場合に特に便利です。
app.controller('myController', function($scope) {
$scope.className = function() {
var className = 'initClass';
if (condition1())
className += ' class1';
if (condition2())
className += ' class2';
return className;
};
});
そしてビューでは、単に:
<div ng-class="className()"></div>
あなたの例は条件付きクラスのために働きます(クラス名はexpressionDataX
がtrueであるなら表示するでしょう):
<div ng-class="{class1: expressionData1, class2: expressionData2}"></div>
要素のユーザーによって提供される複数のクラスを追加することもできます。
<div ng-class="[class1, class2]"></div>
使用法:
<div class="foo bar" class1="foo" class2="bar"></div>
これはOR ||を使用して複数の角度付きルーターの状態を比較する例です。オペレーター:
<li ng-class="
{
warning:
$state.includes('out.pay.code.wrong')
|| $state.includes('out.pay.failed')
,
active:
$state.includes('out.pay')
}
">
条件が満たされているかどうかに応じて、クラスは警告および/またはアクティブになります。
Activeとactivemenuの下にはクラスとitemCountがあり、ShowCartはexpression/boolean値です。
ng-class="{'active' : itemCount, 'activemenu' : showCart}"
複数の条件で
<div ng-class="{'class1' : con1 || can2, 'class2' : con3 && con4}">
Hello World!
</div>
Scotch.ioのおかげで別の方法を見つけた
<div ng-repeat="step in steps" class="step-container step" ng-class="[step.status, step.type]" ng-click="onClick(step.type)">
これは私の言及でした。 https://scotch.io/tutorials/the-many-ways-to-use-ngclass
他の方法で「複数クラスを使う」ことを制御する関数を作成することができます
CSS
<style>
.Red {
color: Red;
}
.Yellow {
color: Yellow;
}
.Blue {
color: Blue;
}
.Green {
color: Green;
}
.Gray {
color: Gray;
}
.b {
font-weight: bold;
}
</style>
スクリプト
<script>
angular.module('myapp', [])
.controller('ExampleController', ['$scope', function ($scope) {
$scope.MyColors = ['It is Red', 'It is Yellow', 'It is Blue', 'It is Green', 'It is Gray'];
$scope.getClass = function (strValue) {
if (strValue == ("It is Red"))
return "Red";
else if (strValue == ("It is Yellow"))
return "Yellow";
else if (strValue == ("It is Blue"))
return "Blue";
else if (strValue == ("It is Green"))
return "Green";
else if (strValue == ("It is Gray"))
return "Gray";
}
}]);
</script>
それを使う
<body ng-app="myapp" ng-controller="ExampleController">
<h2>AngularJS ng-class if example</h2>
<ul >
<li ng-repeat="icolor in MyColors" >
<p ng-class="[getClass(icolor), 'b']">{{icolor}}</p>
</li>
</ul>