2016-12-17 6 views

答えて

1

コントローラでは、HTML側ではなく、代わりに丸めてみてください。

0

コントローラで定義された関数を使用できます。コントローラで

<div class="col-md-{{colWidth(variants.length)}}">something</div> 

$scope.colWidth = function(nbVariants) { 
    // Use whatever formula suits your needs. Be aware that this may return 0 
    return Math.round(12/nbVariants);  
} 
関連する問題