博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
AngularJS bootStraping
阅读量:5058 次
发布时间:2019-06-12

本文共 720 字,大约阅读时间需要 2 分钟。

看这个

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就不用这句话了

转载于:https://www.cnblogs.com/cart55free99/p/4288318.html

你可能感兴趣的文章
配置链路聚合中极小错误——失之毫厘谬以千里
查看>>
代码整洁
查看>>
蓝桥杯-分小组-java
查看>>
Java基础--面向对象编程1(类与对象)
查看>>
Android Toast
查看>>
iOS开发UI篇—Quartz2D使用(绘制基本图形)
查看>>
docker固定IP地址重启不变
查看>>
桌面图标修复||桌面图标不正常
查看>>
JavaScript基础(四)关于对象及JSON
查看>>
关于js sort排序方法
查看>>
JAVA面试常见问题之Redis篇
查看>>
javascript:二叉搜索树 实现
查看>>
网络爬虫Heritrix源码分析(一) 包介绍
查看>>
__int128的实现
查看>>
Problem - 1118B - Codeforces(Tanya and Candies)
查看>>
jdk1.8 api 下载
查看>>
svn 图标不显示
查看>>
getElement的几中属性介绍
查看>>
iOS 使用Quartz 2D画虚线 【转】
查看>>
平面最接近点对
查看>>