angularJs的MVC模式

angularJs的MVC模式

适用于CRUD应用和SPA单页面网站的开发。

angularJs资源

 http://www.angularjs.org/

https://www.github.com/angular/

http://www.angularjs.cn/

http://www.ngnice.com/

http://woxx.sinaapp.com/

angularJs下载

http://www.bootcdn.cn/angular.js/

npm install angular (c:/用户/node_moudle...)


angualrjs有哪些特性

MVC模式

模块系统

指令系统

依赖注入

双向数据绑定


MVC模式

<html ng-app>
	<head>
		<title>Demo1</title>
		<meta charset="UTF-8"/>
		<script type="text/javascript" src="angular.min.js"></script>
		<script>
			function Aaa($scope){
				$scope.name ='init';  //数据M
			}
		</script>
	</head>
	<body>
		<div ng-controller="Aaa"> //控制器 C ng-controller="Aaa"
			<p>{{name}}</p>  //视图 V
		</div>
	</body>
</html>



你可能感兴趣的:(angularJs的MVC模式)