AngularJS 模組化詳解及執行個體代碼_AngularJS

來源:互聯網
上載者:User

AngularJS有幾大特性,比如:

  1 MVC

  2 模組化

  3 指令系統

  4 雙向資料繫結

那麼本篇就來看看AngularJS的模組化。

  首先先說一下為什麼要實現模組化:

  1 增加了模組的可重用性

  2 通過定義模組,實現載入順序的自訂

  3 在單元測試中,不必載入所有的內容

  之前做的幾個例子,控制器的代碼直接寫在script標籤裡面,這樣聲明的函數都是全域的,顯然不是一個最好的選擇。

  下面看看如何進行模組化:       

 <script type="text/javascript">      var myAppModule = angular.module('myApp',[]);            myAppModule.filter('test',function(){        return function(name){          return 'hello, '+name+'!';        };      });      myAppModule.controller('myAppCtrl',['$scope',function($scope){        $scope.name='xingoo';      }]);    </script>

  首先,通過全域變數angular建立模組myAppModule

angular.module('myApp',[]);

  第一個參數是綁定的應用app名稱,這個app標識了頁面中angular的進入點,類似main函數的作用。

  第二個參數[]裡面標識了依賴的模組。

  下面看看如何使用模組吧!

<!doctype html><html ng-app="myApp">  <head>     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />     <script src="http://apps.bdimg.com/libs/angular.js/1.2.16/angular.min.js"></script>  </head>  <body>    <div ng-controller="myAppCtrl">      {{name | test }}    </div>    <script type="text/javascript">      var myAppModule = angular.module('myApp',[]);            myAppModule.filter('test',function(){        return function(name){          return 'hello, '+name+'!';        };      });      myAppModule.controller('myAppCtrl',['$scope',function($scope){        $scope.name='xingoo';      }]);    </script>  </body></html>

  直接綁定myApp到ng-app上,就可以了。

  在script中,我們通過模組建立了一個filter和一個控制器。

  filter的作用是 添加字串修飾。

  控制器的作用則是初始設定變數。

  程式的運行結果如下:

          以上就是對AngularJS 模組化 的資料整理,後續繼續補充相關資料,謝謝大家對本站的支援!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.