第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

Angular.js中用ng-repeat-start實(shí)現(xiàn)自定義顯示?

Angular.js中用ng-repeat-start實(shí)現(xiàn)自定義顯示?

汪汪一只貓 2018-09-13 11:06:52
Angular.js中用ng-repeat-start實(shí)現(xiàn)自定義顯示
查看完整描述

1 回答

?
一只甜甜圈

TA貢獻(xiàn)1836條經(jīng)驗(yàn) 獲得超5個(gè)贊

前言

 

眾所周知AngularJS 中可以使用 ng-repeat 顯示列表數(shù)據(jù),這對(duì)大家來(lái)說(shuō)應(yīng)該都不陌生了, 用起來(lái)很簡(jiǎn)單, 也很方便, 比如要顯示一個(gè)產(chǎn)品表格, Controller 的 Javascript 代碼如下:

     angular.module('app', [])  .controller('MyController', MyController);    MyController.$inject = ['$scope'];  function MyController($scope) {   // 要顯示的產(chǎn)品列表數(shù)據(jù);   $scope.products = [    {     id: 1,     name: 'Product 1',     description: 'Product 1 description.'    },    {     id: 2,     name: 'Product 3',     description: 'Product 2 description.'    },    {     id: 3,     name: 'Product 3',     description: 'Product 3 description.'    }   ];  }    

對(duì)應(yīng)的 HTML 視圖代碼如下:

      <table class="table">    <tr>     <th>id</th>     <th>name</th>     <th>description</th>     <th>action</th>    </tr>    <tr ng-repeat="p in products">     <td></td>     <td></td>     <td></td>     <td><a href="#">Buy</a></td>    </tr>   </table>    

運(yùn)行效果圖:

 

 

可是如果全部頁(yè)面都是每個(gè)產(chǎn)品占一行來(lái)顯示, 未免太枯燥了, 比如用戶(hù)希望這樣子自定義顯示:

 

 

每個(gè)產(chǎn)品占表格的兩行, 這樣的效果用 ng-repeat 就沒(méi)辦法實(shí)現(xiàn)了。 不過(guò) AngularJS 提供了 ng-repeat-start 和 ng-repeat-end 來(lái)實(shí)現(xiàn)上面的需求, ng-repeat-start 和 ng-repeat-end 的語(yǔ)法如下:

      <header ng-repeat-start="item in items">    Header    </header>   <div class="body">    Body    </div>   <footer ng-repeat-end>    Footer    </footer>    

假設(shè)提供了 ['A','B'] 兩個(gè)產(chǎn)品, 則生成的 HTML 結(jié)果如下:

      <header>    Header A   </header>   <div class="body">    Body A   </div>   <footer>    Footer A   </footer>   <header>    Header B   </header>   <div class="body">    Body B   </div>   <footer>    Footer B   </footer>    

了解了 ng-repeat-start 和 ng-repeat-end 的用法之后, 上面要求的界面就很容易實(shí)現(xiàn)了, 代碼如下:

      <table class="table table-bordered">    <tr ng-repeat-start="p in products">     <td></td>     <td rowspan="2"><a href="#">Buy</a></td>    </tr>    <tr ng-repeat-end>     <td></td>    </tr>   </table>    

總結(jié)

 

以上就是Angular.js中利用ng-repeat-start實(shí)現(xiàn)自定義顯示的全部?jī)?nèi)容,希望本文的內(nèi)容對(duì)大家學(xué)習(xí)或者使用Angular.js能有所幫助,如果有疑問(wèn)大家可以留言交流,謝謝大家對(duì)腳本之家的支持。


查看完整回答
反對(duì) 回復(fù) 2018-09-23
  • 1 回答
  • 0 關(guān)注
  • 978 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)