ngRepeat

為集合的每個項目實例化一塊模板,每個模板都有它自己的 scope

有一些比較特殊的 variable 能夠在每塊模板個體使用,像是 $index 可以取得當前項目的索引或是鍵值。

ng-repeat="repeat_expression"
  • 利用 Bootstrap 設計好的 table 樣式實作購物車清單

 self.subtotal = function(qty, price) {
    var discount = 1;

    if(qty > 5) {

      discount = 0.95;

    }

    return qty * price * discount;
  };

JS Bin

results matching ""

    No results matching ""