91在线一级黄片|91视频在线观看18|成人夜间呦呦网站|91资源欧美日韩超碰|久久最新免费精品视频一区二区三区|国产探花视频在线观看|黄片真人免费三级片毛片|国产人无码视频在线|精品成人影视无码三区|久久视频爱久久免费精品

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時(shí)間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營(yíng)銷解決方案
Angular項(xiàng)目構(gòu)建指南:不再為angular構(gòu)建而猶豫不決

前言

讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡(jiǎn)單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:域名與空間、雅安服務(wù)器托管、營(yíng)銷軟件、網(wǎng)站建設(shè)、墨脫網(wǎng)站維護(hù)、網(wǎng)站推廣。

接觸Angular也有小半個(gè)月了,雖然沒有使勁折騰,不過正所謂"no zuo no die".學(xué)一門新東西,不好好折騰一下總覺得對(duì)不起祖國(guó),最不起人民...好像扯遠(yuǎn)了,想寫前言來(lái)著.為什么要寫這篇構(gòu)建指南?***的原因是為了給正在找這方面資料,掙扎于各種說法中的同學(xué)一個(gè)借鑒,同時(shí)我也把自己的經(jīng)驗(yàn)記錄下來(lái),兩全其美.

正文

如果你不知道什么是Angular或者根本沒聽說過,那么我接下來(lái)所說的對(duì)你來(lái)說毫無(wú)益處,不過如果你打算以后會(huì)接觸Angular或者干脆要漲漲姿勢(shì)~讀下去還是有點(diǎn)用的.

Angular和它之前所出現(xiàn)的其余前端框架***的不同,在于它的核心不再是DOM,而是數(shù)據(jù),是model.我們慣用的不管是單純的jQuery還是MVC的Backbone,它們本質(zhì)仍是讓我們更方便更有條理的操作DOM,但是Angular不是.通過一系列魔術(shù)般的手法,它將一切的重心轉(zhuǎn)移到數(shù)據(jù)上.以開發(fā)應(yīng)用而不是操作節(jié)點(diǎn)的方式去開發(fā)Web,一切以數(shù)據(jù)為中心,數(shù)據(jù)的變化驅(qū)動(dòng)了一切,包括行為.

文本主題,如何構(gòu)建一個(gè)angular項(xiàng)目?

坦白說最開始構(gòu)建一個(gè)項(xiàng)目的時(shí)候,雖然很小但是很糾結(jié).我本身是有點(diǎn)***主義的,所以雖然一開始什么都沒有也想做到盡善盡美.因?yàn)槁犨^很多前輩的經(jīng)驗(yàn),說如果框架基礎(chǔ)沒搭好,等到后來(lái)不管是重構(gòu)還是維護(hù)都是一場(chǎng)噩夢(mèng).所以一開始小心意義,希望能將項(xiàng)目盡量搭建的結(jié)實(shí)并且益于維護(hù)和開發(fā).

在搭建伊始首先遇到的一個(gè)問題,就是到底要不要引入requirejs或者seajs這類依賴管理的工具?

我本身沒有多少語(yǔ)言或者技術(shù)的上的情節(jié),對(duì)于各個(gè)大神也沒有多少膜拜的憧憬(更多的是我根本不清楚誰(shuí)是大神,也從沒去找過).所以對(duì)于我來(lái)講不管是requirejs的AMD還是seajs的CMD,從實(shí)現(xiàn)的角度上來(lái)講都是做了同一個(gè)工作.在考慮一個(gè)Angular應(yīng)用到底需不需要這種工具的時(shí)候,我也在網(wǎng)上看了很多人的說法.我總結(jié)一句就是,基本都和沒說一樣,也就是用不用隨便,看情況.

那么我能有什么好的答案,其實(shí)我現(xiàn)在的答案就是:"可以不用".怎么說是可以不用呢,如果你不用requirejs也能滿足項(xiàng)目的開發(fā)以及各種需求,那么就別用了.angular本身的模塊已經(jīng)做到了依賴注入,所以我們不需要通過requirejs進(jìn)行異步加載也可以很好的用下去.

當(dāng)然,如果你開發(fā)過程中發(fā)覺還是有些地方需要,那么也可以加上去.本文里我會(huì)詳細(xì)說明這兩種方式的構(gòu)建方法.但是這里我的觀點(diǎn)已經(jīng)表明了:在不需要的情況下,不要用.

(1) 不用requirejs直接構(gòu)建Angular

之所以不使用requirejs就直接構(gòu)建angular,因?yàn)閍ngular對(duì)于依賴的管理以及angular的使用場(chǎng)景完全可以做到這一點(diǎn).首先在以來(lái)上,angular的依賴注入是個(gè)好東西,不了解的同學(xué)可以去搜一下資料.我這里簡(jiǎn)單的說,就是當(dāng)我需要一個(gè)module的時(shí)候,我不用管它在哪,它是什么.我只要知道它的名字然后告訴angular就可以了,至于怎么將它的對(duì)象傳遞過來(lái),怎么找到的,angular自己會(huì)去處理.

 
 
  1. angular.module('myApp', [  
  2.   'ngRoute',  
  3. ]); 

例如這里的ngRoute,我需要知道ngRoute怎么來(lái)的,在哪里.只要有一個(gè)模塊定義為ngRoute我就可以直接拿來(lái)用。

鑒于Angular如此的給力,剩下的事情就好辦了.我們只需要從功能和業(yè)務(wù)兩方面將文件劃分成module就可以了,然后將所有的庫(kù)文件在頁(yè)面上通過script標(biāo)簽引用,再將所有的業(yè)務(wù)文件也即是我們自己寫的js合并為一個(gè)all.js加載到頁(yè)面上即可。

這里文件的劃分遵循angular官方的推薦方式:

|--js
   |--app.js                     // app啟動(dòng)文件,用于app配置
   |--controllers.js          // controllers也就是存放我們自己的業(yè)務(wù)文件
   |--directives.js            // 指令文件(指令可共用)
   |--fliters.js                  // 過濾器文件(過濾器可共用)
   |--services.js             //  服務(wù)文件(可共用,一般是與服務(wù)器交互的服務(wù))
|--partials
   |--html1.html  
   |--html2.html
|--index.html

app.js

 
 
  1. 'use strict';  
  2.  
  3.  
  4. // Declare app level module which depends on filters, and services  
  5. angular.module('myApp', [  
  6.   'ngRoute',  
  7.   'myApp.filters',  
  8.   'myApp.services',  
  9.   'myApp.directives',  
  10.   'myApp.controllers' 
  11. ]).  
  12. config(['$routeProvider', function($routeProvider) {  
  13.   $routeProvider.when('/view1', {templateUrl: 'partials/partial1.html', controller: 'MyCtrl1'});  
  14.   $routeProvider.when('/view2', {templateUrl: 'partials/partial2.html', controller: 'MyCtrl2'});  
  15.   $routeProvider.otherwise({redirectTo: '/view1'});  
  16. }]); 

controllers.js

 
 
  1. 'use strict';  
  2.  
  3. /* Controllers */ 
  4.  
  5. angular.module('myApp.controllers', [])  
  6.   .controller('MyCtrl1', ['$scope', function($scope) {  
  7.  
  8.   }])  
  9.   .controller('MyCtrl2', ['$scope', function($scope) {  
  10.  
  11.   }]); 

directives.js

 
 
  1. 'use strict';  
  2.  
  3. /* Directives */ 
  4.  
  5.  
  6. angular.module('myApp.directives', []).  
  7.   directive('appVersion', ['version', function(version) {  
  8.     return function(scope, elm, attrs) {  
  9.       elm.text(version);  
  10.     };  
  11.   }]); 

filters.js

 
 
  1. 'use strict';  
  2.  
  3. /* Filters */ 
  4.  
  5. angular.module('myApp.filters', []).  
  6.   filter('interpolate', ['version', function(version) {  
  7.     return function(text) {  
  8.       return String(text).replace(/\%VERSION\%/mg, version);  
  9.     };  
  10.   }]); 

services.js

 
 
  1. 'use strict';  
  2.  
  3. /* Services */ 
  4.  
  5.  
  6. // Demonstrate how to register services  
  7. // In this case it is a simple value service.  
  8. angular.module('myApp.services', []).  
  9.   value('version', '0.1'); 

index.html

 
 
  1.  
  2.  
  3.  
  4.  
  5.    
  6.  
  7.    
  8.    
  9.   My AngularJS App 
  10.    
  11.    
  12.    
  13.    
  14.    
  15.    
  16.  
  17.  
  18.   
       
    •     
    • view1
    •  
    •     
    • view2
    •  
    •   
     
  19.  
  20.    
  21.  
  22.   
 
  •  
  •   
    Angular seed app: v
     
  •  
  •    
  •    
  •    
  •    
  •    
  •    
  •    
  •    
  •  
  •  
  • 如此在不使用requirejs的情景下,項(xiàng)目就構(gòu)建完成了.還有幾個(gè)補(bǔ)充點(diǎn)就是其一你可以將controllers繼續(xù)拆分為多個(gè)controller模塊,這里可以完全按照你的業(yè)務(wù)進(jìn)行劃分.比如user目錄下userController等等.然后將所有這些我們自己寫的文件通過grunt或者gulp進(jìn)行合并為一個(gè)單獨(dú)的總的文件all.js這樣在頁(yè)面中除了庫(kù)文件只要這一個(gè)文件就行了.angular的module所帶來(lái)的好處就是這樣合并的文件,不用在乎js合并的順序,因?yàn)樗峭ㄟ^angular依賴注入的。

    (2) 通過requirejs構(gòu)建

    這種方式的構(gòu)建可能對(duì)于某些人來(lái)講更加清晰,結(jié)構(gòu)和上面的基本一樣,多了一個(gè)man.js用來(lái)配置requirejs,單獨(dú)拆分出routes.js以及一個(gè)controller文件夾通過requirejs將controller一個(gè)個(gè)拆分出來(lái),按需的異步加載。

    index.html

     
     
    1.  
    2.  
    3.  
    4. Angular-RequireJS sample app 
    5.  
    6.  
    7.  
    8.  
    9. AngularJS + RequireJS

       
      •  
      • View 1
      •  
      • View 2
      •  
       
     
  •  
  •  
  •  
  • #p#

    main.js

     
     
    1. require.config({  
    2.     paths: {  
    3.         angular: '../../bower_components/angular/angular',  
    4.         angularRoute: '../../bower_components/angular-route/angular-route',  
    5.         angularMocks: '../../bower_components/angular-mocks/angular-mocks',  
    6.         text: '../../bower_components/requirejs-text/text' 
    7.     },  
    8.     shim: {  
    9.         'angular' : {'exports' : 'angular'},  
    10.         'angularRoute': ['angular'],  
    11.         'angularMocks': {  
    12.             deps:['angular'],  
    13.             'exports':'angular.mock' 
    14.         }  
    15.     },  
    16.     priority: [  
    17.         "angular" 
    18.     ]  
    19. });  
    20.  
    21. //http://code.angularjs.org/1.2.1/docs/guide/bootstrap#overview_deferred-bootstrap  
    22. window.name = "NG_DEFER_BOOTSTRAP!";  
    23.  
    24. require( [  
    25.     'angular',  
    26.     'app',  
    27.     'routes' 
    28. ], function(angular, app, routes) {  
    29.     'use strict';  
    30.     var $html = angular.element(document.getElementsByTagName('html')[0]);  
    31.  
    32.     angular.element().ready(function() {  
    33.         angular.resumeBootstrap([app['name']]);  
    34.     });  
    35. }); 

    app.js

     
     
    1. define([  
    2.     'angular',  
    3.     'filters',  
    4.     'services',  
    5.     'directives',  
    6.     'controllers',  
    7.     'angularRoute',  
    8.     ], function (angular, filters, services, directives, controllers) {  
    9.         'use strict';  
    10.  
    11.         // Declare app level module which depends on filters, and services  
    12.           
    13.         return angular.module('myApp', [  
    14.             'ngRoute',  
    15.             'myApp.controllers',  
    16.             'myApp.filters',  
    17.             'myApp.services',  
    18.             'myApp.directives' 
    19.         ]);  
    20. }); 

    controllers.js

     
     
    1. define(['angular', 'services'], function (angular) {  
    2.     'use strict';  
    3.  
    4.     /* Controllers */ 
    5.       
    6.     return angular.module('myApp.controllers', ['myApp.services'])  
    7.         // Sample controller where service is being used  
    8.         .controller('MyCtrl1', ['$scope', 'version', function ($scope, version) {  
    9.             $scope.scopedAppVersion = version;  
    10.         }])  
    11.         // More involved example where controller is required from an external file  
    12.         .controller('MyCtrl2', ['$scope', '$injector', function($scope, $injector) {  
    13.             require(['controllers/myctrl2'], function(myctrl2) {  
    14.                 // injector method takes an array of modules as the first argument  
    15.                 // if you want your controller to be able to use components from  
    16.                 // any of your other modules, make sure you include it together with 'ng'  
    17.                 // Furthermore we need to pass on the $scope as it's unique to this controller  
    18.                 $injector.invoke(myctrl2, this, {'$scope': $scope});  
    19.             });  
    20.         }]);  
    21. }); 

    directives.js

     
     
    1. define(['angular', 'services'], function(angular, services) {  
    2.     'use strict';  
    3.  
    4.   /* Directives */ 
    5.  
    6.     angular.module('myApp.directives', ['myApp.services'])  
    7.         .directive('appVersion', ['version', function(version) {  
    8.             return function(scope, elm, attrs) {  
    9.                 elm.text(version);  
    10.         };  
    11.     }]);  
    12. }); 

    filters.js?

     
     
    1. define(['angular', 'services'], function (angular, services) {  
    2.     'use strict';  
    3.  
    4.     /* Filters */ 
    5.     
    6.     angular.module('myApp.filters', ['myApp.services'])  
    7.         .filter('interpolate', ['version', function(version) {  
    8.             return function(text) {  
    9.                 return String(text).replace(/\%VERSION\%/mg, version);  
    10.             };  
    11.     }]);  
    12. }); 

    routes.js

     
     
    1. define(['angular', 'app'], function(angular, app) {  
    2.     'use strict';  
    3.  
    4.     return app.config(['$routeProvider', function($routeProvider) {  
    5.         $routeProvider.when('/view1', {  
    6.             templateUrl: 'app/partials/partial1.html',  
    7.             controller: 'MyCtrl1' 
    8.         });  
    9.         $routeProvider.when('/view2', {  
    10.             templateUrl: 'app/partials/partial2.html',  
    11.             controller: 'MyCtrl2' 
    12.         });  
    13.         $routeProvider.otherwise({redirectTo: '/view1'});  
    14.     }]);  
    15.  
    16. }); 

    services.js

     
     
    1. define(['angular'], function (angular) {  
    2.     'use strict';  
    3.       
    4.   /* Services */ 
    5.  
    6.   // Demonstrate how to register services  
    7.   // In this case it is a simple value service.  
    8.     angular.module('myApp.services', [])  
    9.         .value('version', '0.1');  
    10. }); 

    controllers文件夾中一個(gè)單獨(dú)controlle文件,myCtrl2.js

     
     
    1. define([], function() {  
    2.     return ['$scope', '$http', function($scope, $http) {  
    3.         // You can access the scope of the controller from here  
    4.         $scope.welcomeMessage = 'hey this is myctrl2.js!';  
    5.  
    6.         // because this has happened asynchroneusly we've missed  
    7.         // Angular's initial call to $apply after the controller has been loaded  
    8.         // hence we need to explicityly call it at the end of our Controller constructor  
    9.         $scope.$apply();  
    10.     }];  
    11. }); 

    ?結(jié)尾

    寫到這應(yīng)該差不多了,就快超字?jǐn)?shù)了.通常情況下Angular應(yīng)用的構(gòu)建這樣就可以了,因?yàn)楸绕饌鹘y(tǒng)框架angular的代碼量上肯定會(huì)有優(yōu)勢(shì),所以一些不必要的東西就不用引入了.上面這些也是我在這段時(shí)間的項(xiàng)目中遇到并且做過的,已經(jīng)實(shí)戰(zhàn)過了,所以如果有類似需求的同學(xué)可以不必在此填坑。

    ***留個(gè)彩蛋吧,在不用requirejs的情況下,angular也是可以實(shí)現(xiàn)異步加載的,只要通過一個(gè)非常小巧的庫(kù)就可以,名字叫script.js.https://github.com/ded/script.js


    分享題目:Angular項(xiàng)目構(gòu)建指南:不再為angular構(gòu)建而猶豫不決
    當(dāng)前URL:http://m.jiaoqi3.com/article/djoiecc.html