16

angularjsで以下のチェックを行う方法を誰か説明してください

<div ng-show="{{offset <= 10}}">Show Me</div>

このように実行すると、htmlが壊れます。比較よりも「<」が原因だと思います

4

3 に答える 3

0

こんな感じで使えます。

{{ data[0].Insight_Value_2 <= 15 ?data[0].Insight_Value_2 : data[0].Insight_Value_2/2 }}

できます。

于 2016-11-09T03:59:49.077 に答える