码迷,mamicode.com
首页 > Windows程序 > 详细

AngularJS bootStraping

时间:2015-02-12 17:51:57      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

看这个

http://www.dotnet-tricks.com/Tutorial/angularjs/5aWL261214-Understanding-AngularJS-Bootstrap-Process.html

其中提到

Angular initializes automatically upon DOMContentLoaded event or when the angular.js script is downloaded to the browser and the document.readyState is set to complete.

什么是bootstrapping呢?

 

  1. Load the module associated with the directive.

  2. Create the application injector.

  3. Compile the DOM starting from the ng-app root element.

This process is called auto-bootstrapping.

 

 

angular.bootstrap(document, [‘myApp‘]);

这其实这就是给某一个元素设置了  ng-app="myApp" 这个属性

以往看到的例子都是 <body ng-app="myApp">  这里是给document设置了 ng-app  

document是一个比<html> 还要高一个层级的

所以如果页面中已设置了ng-app就不用这句话了

AngularJS bootStraping

标签:

原文地址:http://www.cnblogs.com/cart55free99/p/4288318.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!