說我有對象的數組:基於角度模板中keyvalue的內嵌字體顏色?
var objects = [{'item':'A','type':'Sport'},{'item':'B','type':'Rock'}]
我想讓它這樣,如果類型是體育,設置:對於格「紅色」。如果type是「Rock」,則爲該div設置「color:gray」。
我該如何做這樣的事情?
<div ng-repeat="item in objects">
<div style="color:red if item.type='Sport', color:gray if item.type='Rock'">{{item.item}}</div>
</div>
巧妙,你是。 – Rolando
謝謝!我還爲示例添加了單向綁定(::)以節省手錶並避免影響性能,但如果您需要雙向綁定,請將其刪除 – j3ff
從句法上來說,「::」是什麼? – Rolando