91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

AngularJS  ng-repeat遍歷輸出的用法

發布時間:2020-09-08 21:35:13 來源:腳本之家 閱讀:367 作者:Darkersky 欄目:web開發

AngularJS  ng-repeat遍歷輸出的用法,最近需要用,就順便發到隨筆上了

<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <title>ng-repeat directive</title>
</head>
<body ng-app="myApp">
<table ng-controller="CartController">
  <caption>我的購物車</caption>
  <tr>
    <th>序號</th>
    <th>商品</th>
    <th>單價</th>
    <th>數量</th>
    <th>金額</th>
    <th>操作</th>
  </tr>
  <tr ng-repeat="item in items">
    <td>{{$index + 1}}</td>
    <td>{{item.name}}</td>
    <td>{{item.price | currency}}</td>
    <td><input ng-model="item.quantity"></td>
    <td>{{item.quantity * item.price | currency}}</td>
    <td>
      <button ng-click="remove($index)">Remove</button>
    </td>
  </tr>
</table>

<script src="js/angular-1.3.0.14/angular.min.js"></script>
<script>
  var app = angular.module('myApp', []);
  app.controller('CartController',function($scope){
    $scope.items = [
      {name: "蘋果 iPhone7", quantity: 1, price: 5088.00},
      {name: "榮耀Magic", quantity: 1, price: 3699.00},
      {name: "vivo X9", quantity: 2, price: 2798.00}
    ];
    //$index包含了ng-repeat過程中的循環計數
    $scope.remove = function (index) {
      $scope.items.splice(index, 1);
    }
  })
</script>
</body>
</html>

ng-repeat指令生命在需要循環內容的元素上,items和控制器上的變量名對應,item是為數組中單個對象起的別名。

$index可以返回當前引用對象的序號,從0開始,另外還有$first、$middle、$last可以返回布爾值,用于告訴你

當前元素是否是集合中的第一個中間的最后一個元素。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

普兰县| 新丰县| 彭阳县| 沧州市| 额敏县| 南召县| 应用必备| 漠河县| 怀仁县| 周宁县| 福建省| 郴州市| 东阿县| 海伦市| 晋中市| 信丰县| 福建省| 乌兰察布市| 唐海县| 布拖县| 揭西县| 馆陶县| 汝阳县| 安新县| 蕉岭县| 银川市| 清水河县| 丁青县| 讷河市| 南漳县| 宁化县| 喜德县| 隆昌县| 分宜县| 略阳县| 南雄市| 蒲江县| 兴宁市| 萍乡市| 怀集县| 文成县|