Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
angularjsで以下のチェックを行う方法を誰か説明してください
<div ng-show="{{offset <= 10}}">Show Me</div>
このように実行すると、htmlが壊れます。比較よりも「<」が原因だと思います
こんな感じで使えます。
{{ data[0].Insight_Value_2 <= 15 ?data[0].Insight_Value_2 : data[0].Insight_Value_2/2 }}
できます。