詳解AngularJS 模組化,angularjs模組化

來源:互聯網
上載者:User

詳解AngularJS 模組化,angularjs模組化

學習要點:

  1. 控制器模組化
  2. 指令模組化
  3. 過濾器模組化
  4. 服務模組化
  5. 定義值模組化
  6. 使用模組工作

第一步:建立一個模組

// function : define module named exampleApp// param detail :// param one : module name// param two : relay on modules collection// parms three : config informationvar myApp = angular.module("exampleApp", ["exampleApp.Controllers", ["exampleApp.Controllers", "exampleApp.Filters", "exampleApp.Directives", "exampleApp.Service", "exampleApp.Values"])

在視圖中應用模組

<!-- use module --><html ng-app="exampleApp"> ...</html>

第二步:定義值

var valueModule = angular.module("exampleApp.Values", [])// defind valuevar now = new Date();valueModule.value("nowValue", now);

第三步:定義服務

var serviceModule = angular.module("exampleApp.Service", [])// function : define a service named daysserviceModule.service("days", function (nowValue) {  this.today = nowValue.getDay();  this.tomorrow = this.today + 1; })

第四步:定義控制器

var controllerModule = angular.module("exampleApp.Controllers", []);// function : define a controller named dayCtrl// the controller include two param:// param detail:// param one : name of controller// param two : a factory function // the param $scope of factory function show information to viewcontrollerModule.controller("dayCtrl", function ($scope, days) {   // days : use custom service // today is ... $scope.day = days.today; // tomorrow is ... $scope.tomorrow = 7;})

將控制器應用於視圖

<!-- use controller --> <div class="panel" ng-controller="dayCtrl">  <div class="panel-header">   <h3>Angular App</h3>  </div>  <!-- if the day is undefined, show unknow -->  <!-- use filter and data binding -->  <h4>Today is {{ day || "unknow" }}</h4>  <h4>Tomorrow is {{ tomorrow || "unknow" }}</h4> </div>

第五步:定義指令

var directiveModule = angular.module("exampleApp.Directives", []);// function : define a directive named highlight// it accepts two param// param one : the name of directive // param two : a factory methoddirectiveModule.directive("highlight", function ($filter) {  // get the filter function  var dayFilter = $filter("dayName");  // param detail:  // scope : view scope of action  // element : the element which uses the custom directive  // attrs : the attrs of the element  return function (scope, element, attrs) {   // console.log(dayFilter(scope.day));   if (dayFilter(scope.day) == attrs['highlight']) {    element.css("color", 'red');   }  } })

將指令應用於視圖

...<h4 highlight="Saturday">Today is {{ day || "unknow" | dayName }}</h4>...

第六步:定義過濾器

var filterModule = angular.module("exampleApp.Filters", []);// function : define a fitler named dayNamefilterModule.filter('dayName', function () { var dayNames = ['Sunday', "Monday", 'Tuesday', 'Wednesday', 'Thurday', 'Friday', 'Saturday']; return function (input) {  // input is the value of data binding  return angular.isNumber(input % 7) ? dayNames[input % 7] : input % 7; };})

將過濾器應用於視圖

<!-- 用 | 分開 --><h4 highlight="Saturday">Today is {{ day || "unknow" | dayName }}</h4><h4>Tomorrow is {{ tomorrow || "unknow" | dayName }}</h4>

最後,下面是完整的代碼:

檔案一:example.html

<!DOCTYPE><!-- use module --><html ng-app="exampleApp"><head> <title>Angluar test</title> <meta charset="utf-8"/> <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" rel="external nofollow" > <link rel="stylesheet" type="text/css" href="css/bootstrap-theme.min.css" rel="external nofollow" ></head><body> <!-- use controller --> <div class="panel" ng-controller="dayCtrl">  <div class="panel-header">   <h3>Angular App</h3>  </div>  <!-- if the day is undefined, show unknow -->  <!-- use defined directive "highlight" -->  <!-- use filter and data binding -->  <h4 highlight="Saturday">Today is {{ day || "unknow" | dayName }}</h4>  <h4>Tomorrow is {{ tomorrow || "unknow" | dayName }}</h4> </div><script type="text/javascript" src="js/angular.min.js"></script><script type="text/javascript" src="values/exampleValue.js"></script><script type="text/javascript" src="controllers/exampleController.js"></script><script type="text/javascript" src="filters/exampleFilter.js"></script><script type="text/javascript" src="directives/exampleDirective.js"></script><script type="text/javascript" src="services/exampleService.js"></script><script type="text/javascript">// function : define module named exampleApp// param detail :// param one : module name// param two : relay on modules collection// parms three : config informationvar myApp = angular.module("exampleApp", ["exampleApp.Controllers", "exampleApp.Filters", "exampleApp.Directives", "exampleApp.Service", "exampleApp.Values"])</script></body></html>

檔案二:services/exampleService.js

var serviceModule = angular.module("exampleApp.Service", [])// function : define a service named daysserviceModule.service("days", function (nowValue) {  this.today = nowValue.getDay();  this.tomorrow = this.today + 1; })

檔案三:values/exampleValue.js

var valueModule = angular.module("exampleApp.Values", [])// defind valuevar now = new Date();valueModule.value("nowValue", now);

檔案四:directives/exampleDirective.js

var directiveModule = angular.module("exampleApp.Directives", []);// function : define a directive named highlight// it accepts two param// param one : the name of directive // param two : a factory methoddirectiveModule.directive("highlight", function ($filter) {  // get the filter function  var dayFilter = $filter("dayName");  // param detail:  // scope : view scope of action  // element : the element which uses the custom directive  // attrs : the attrs of the element  return function (scope, element, attrs) {   // console.log(dayFilter(scope.day));   if (dayFilter(scope.day) == attrs['highlight']) {    element.css("color", 'red');   }  } })

檔案五:controllers/exampleController.js

var controllerModule = angular.module("exampleApp.Controllers", []);// function : define a controller named dayCtrl// the controller include two param:// param detail:// param one : name of controller// param two : a factory function // the param $scope of factory function show information to viewcontrollerModule.controller("dayCtrl", function ($scope, days) {  // days : use custom service // today is ... $scope.day = days.today; // tomorrow is ... $scope.tomorrow = days.tomorrow;})

檔案六:filters/exampleFilter.js

var filterModule = angular.module("exampleApp.Filters", []);// function : define a fitler named dayNamefilterModule.filter('dayName', function () { var dayNames = ['Sunday', "Monday", 'Tuesday', 'Wednesday', 'Thurday', 'Friday', 'Saturday']; return function (input) {  // input is the value of data binding  return angular.isNumber(input % 7) ? dayNames[input % 7] : input % 7; };})

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援幫客之家。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.