欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Angular.js初始化之ng-app的自动绑定与手动绑定详解

程序员文章站 2022-09-08 23:28:15
前言 众所周知在传统的angularjs应用中,都是通过ng-app把angular应用绑定到某个dom上,这样做会把js代码入侵到html上,angular提供了手动启...

前言

众所周知在传统的angularjs应用中,都是通过ng-app把angular应用绑定到某个dom上,这样做会把js代码入侵到html上,angular提供了手动启动的api--angular.bootstrap()

本文将给大家详细介绍关于angular.js初始化之ng-app自动与手动绑定的相关内容,分享出来供大家参考学习,下面话不多说,来一起看看详细的介绍。

一、传统的绑定初始化

<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> 

二、手动初始化

angular.bootstrap(element, [appname], [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']); // 浏览器加载的每个html都会对应一个document对象, 此对象是所有html中dom元素的根节点,也属于dom元素

 </script>

</body>

</html> 

注意: angular.bootstrap只会绑定第一次加载的对象,后面重复的绑定或者其他对象的绑定,都会在控制台输出错误提示

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持