溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Angularjs如何實(shí)現(xiàn)動(dòng)態(tài)添加控件功能

發(fā)布時(shí)間:2021-05-21 14:12:18 來(lái)源:億速云 閱讀:169 作者:小新 欄目:web開(kāi)發(fā)

這篇文章主要介紹Angularjs如何實(shí)現(xiàn)動(dòng)態(tài)添加控件功能,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

實(shí)現(xiàn)下面這樣的需求:

Angularjs如何實(shí)現(xiàn)動(dòng)態(tài)添加控件功能

點(diǎn)擊增加一塊數(shù)據(jù)盤(pán),會(huì)出現(xiàn)數(shù)據(jù)盤(pán)選項(xiàng)。

(1)最開(kāi)始,想到原生JavaScript,jQuery (appendChild()等方法結(jié)合AngularJS來(lái)添加新的元素。但是突然發(fā)現(xiàn)控件里面的數(shù)據(jù)綁定,原生javascript沒(méi)法控制。

(2)上網(wǎng)查資料,找到$compile服務(wù),動(dòng)態(tài)改變html內(nèi)容。本以為這可以解決我的需求,但是仔細(xì)研究發(fā)現(xiàn)$compile是這樣的東西。

用$compile服務(wù)創(chuàng)建一個(gè)directive ‘compile',這個(gè)complie會(huì)將傳入的html字符串或者DOM轉(zhuǎn)換為一個(gè)template,然后直接在html里調(diào)用compile即可

Angularjs如何實(shí)現(xiàn)動(dòng)態(tài)添加控件功能

Angularjs如何實(shí)現(xiàn)動(dòng)態(tài)添加控件功能

(3)$compile不能滿足我的需求,繼續(xù)找資料,才發(fā)現(xiàn)angularjs實(shí)現(xiàn)這樣的需求,如此簡(jiǎn)潔明朗。即ng-repeat  $index.

<div ng-repeat="item in DATA.data"> 
    <div class="form-group"> 
    <div class="col-md-12"> 
      <label class="col-md-1" >{{$index + 1}}</label> 
      <div class="col-md-9"><input type="text" class="form-control" ng-model="item.value" name="item{{$index + 1}}" /></div> 
      <div><input type="button" ng-click="item.delete($index)" value="刪除"></div> 
    </div> 
    </div> 
</div 
<div><input type="button" ng-click="add()" value="增加"></div>
testModule.controller('testController', 
   function ($scope, $log) { 
     $scope.DATA = new Object(); 
     $scope.DATA.data = [{key: 0, value: ""}]; 
    // add 
     $scope.add = function($index) {         
       // 用時(shí)間戳作為每個(gè)item的key        
       $scope.DATA.data.splice($index + 1, 0,{key: new Date().getTime(), value: ""});    
     } 
     // delete 
     $scope.DATA.delete = function($index) {      
      $scope.DATA.data.splice($index, 1); 
    } 
});

以上是“Angularjs如何實(shí)現(xiàn)動(dòng)態(tài)添加控件功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI