私は計算が間違っているangular.jsと高さを計算し、この行で、CSSスタイルタグにそのngのリピートループで角度を計算奇妙な行動
を値を追加します。
<div style="height: {{60.0/100.0 * (100 - (100.0/0.27 * (item.wert + 1.0 - 0.95)))}}%; ">
<p>{{item.wert}}</p>
</div>
私は因子1とitem.wertを掛けたときに、結果が正しいと、 ので、これは動作します:私は1でそれを乗算しなければならない理由
<div style="height: {{60.0/100.0 * (100 - (100.0/0.27 * ((item.wert * 1.0) + 1.0 - 0.95)))}}%; ">
<p>{{item.wert}}</p>
</div>
誰でも知っていますか? ありがとう!
'item.wert'の値は何ですか? –
0.2のような浮動小数点値ですが、高さを使用すると、その右のconverdet:{{item.wert}}% - それも役に立ちます – miholzi
'item.wert'の型は何ですか?もしそれが文字列javascriptが '' 1 "+ 1 ===" 11 "' –