AngularJS bootstrap啟動詳解及執行個體代碼_AngularJS

來源:互聯網
上載者:User

對於一般的使用者來說,AngularJS的ng-app都是手動綁定到某個dom元素。但是在一些應用中,這樣就顯得很不方便了。

綁定初始化

通過綁定來進行angular的初始化,會把js代碼侵入到html中,但是對於新手使用來說,還是足夠了!

<html><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 ng-app="myApp">  <div ng-controller="myCtrl">    {{ hello }}  </div>  <script type="text/javascript">    var myModule = angular.module("myApp",[]);    myModule.controller("myCtrl",function($scope){      $scope.hello = "hello,angular!";    });  </script></body></html>

運行後,會顯示hello,angular!

手動初始化

Angular中也提供了手動綁定的api——bootstrap,它的使用方式如下:

angular.bootstrap(element, [modules], [config]);

其中第一個參數element:是綁定ng-app的dom元素;

modules:綁定的模組名字
config:附加的配置

簡單的看一下代碼:

<html>  <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><body id="body">  <div ng-controller="myCtrl">    {{ hello }}  </div>  <script type="text/javascript">    var app = angular.module("bootstrapTest",[]);    app.controller("myCtrl",function($scope){      $scope.hello = "hello,angular from bootstrap";    });        // angular.bootstrap(document.getElementById("body"),['bootstrapTest']);    angular.bootstrap(document,['bootstrapTest']);  </script></body></html>

值得注意的是:

angular.bootstrap只會綁定第一次載入的對象。

後面重複的綁定或者其他對象的綁定,都會在控制台輸出錯誤提示。

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

相關文章

聯繫我們

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