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

AngularJS模块详解及示例代码

程序员文章站 2023-10-30 20:22:46
angularjs支持模块化的方法。模块用于单独的逻辑表示服务,控制器,应用程序等,并保持代码的整洁。我们在单独的js文件中定义的模块,并将其命名为按照module.js文...

angularjs支持模块化的方法。模块用于单独的逻辑表示服务,控制器,应用程序等,并保持代码的整洁。我们在单独的js文件中定义的模块,并将其命名为按照module.js文件形式。在这个例子中,我们要创建两个模块。

application module - 用于初始化控制器应用程序

controller module - 用于定义控制器

应用模块

mainapp.js

var mainapp = angular.module("mainapp", []);

在这里,我们已经声明使用 angular.module 功能的应用程序 mainapp 模块。我们已经通过了一个空数组给它。此数组通常包含从属模块。

控制器模块

mainapp.controller("studentcontroller", function($scope) {
  $scope.student = {
   firstname: "mahesh",
   lastname: "parashar",
   fees:500,
   subjects:[
     {name:'physics',marks:70},
     {name:'chemistry',marks:80},
     {name:'math',marks:65},
     {name:'english',marks:75},
     {name:'hindi',marks:67}
   ],
   fullname: function() {
     var studentobject;
     studentobject = $scope.student;
     return studentobject.firstname + " " + studentobject.lastname;
   }
  };
});

在这里,我们已经声明采用studentcontroller模块的mainapp.controller功能的控制器。

使用模块

<div ng-app="mainapp" ng-controller="studentcontroller">
..
<script src="mainapp.js"></script>
<script src="studentcontroller.js"></script>

在这里,我们使用 ng-app 指令和控制器采用ng-controller指令应用模块。我们已经在主要的html页面导入mainapp.js和studentcontroller.js。

示例

下面的例子将展示上述所有模块。

testangularjs.htm

<html>
  <head>
	<title>angular js modules</title>
	<style>
	table, th , td {
	 border: 1px solid grey;
	 border-collapse: collapse;
	 padding: 5px;
	}
	table tr:nth-child(odd) {
	 background-color: #f2f2f2;
	}
	table tr:nth-child(even) {
	 background-color: #ffffff;
	}
	</style>
	</head>
	<body>
	<h2>angularjs sample application</h2>
	<div ng-app="mainapp" ng-controller="studentcontroller">
	<table border="0">
	<tr><td>enter first name:</td><td><input type="text" ng-model="student.firstname"></td></tr>
	<tr><td>enter last name: </td><td><input type="text" ng-model="student.lastname"></td></tr>
	<tr><td>name: </td><td>{{student.fullname()}}</td></tr>
	<tr><td>subject:</td><td>
	<table>
	  <tr>
	   <th>name</th>
	   <th>marks</th>
	  </tr>
	  <tr ng-repeat="subject in student.subjects">
	   <td>{{ subject.name }}</td>
	   <td>{{ subject.marks }}</td>
	  </tr>
	</table>
	</td></tr>
	</table>
	</div>
	<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script>
	<script src="mainapp.js"></script>
	<script src="studentcontroller.js"></script>
</body>
</html>

mainapp.js

var mainapp = angular.module("mainapp", []);

studentcontroller.js

mainapp.controller("studentcontroller", function($scope) {
  $scope.student = {
   firstname: "mahesh",
   lastname: "parashar",
   fees:500,
   subjects:[
     {name:'physics',marks:70},
     {name:'chemistry',marks:80},
     {name:'math',marks:65},
     {name:'english',marks:75},
     {name:'hindi',marks:67}
   ],
   fullname: function() {
     var studentobject;
     studentobject = $scope.student;
     return studentobject.firstname + " " + studentobject.lastname;
   }
  };
});

输出

在web浏览器打开textangularjs.htm。看到结果如下。

AngularJS模块详解及示例代码

以上就是angularjs模块相关知识的资料整理,后续继续补充相关知识,谢谢大家对本站的支持!