AngularJS中的MVC

Controller

 Controller使用过程中的注意点:

  1. 不要试图去复用Controller,一个控制器一般只负责一小块视图
  2. 不要在Controller中操作DOM,这不是控制器的职责。因为操作DOM速度很低,会导致浏览器重新布局
  3. 不要在Controller中做数据格式化,ng有很好用的表单控件
  4. 不要在Controller里面做数据过滤操作,ng有$filter服务
  5. 一般来说,Controller是不会互相调用的,控制器之间的交互会通过事件进行
angular.module('myModule', [])
  .controller('myCtrl', ['$scope', function($scope){
	  
 }])
  .controller('myCtrl2', ['$scope', function($scope) {
	  
  }])

如何复用Model 

  example.html

<html data-ng-app>
  <head>
    <meta charset="utf-8">
  </head>
  <body>
    <div>
      <input data-ng-model="greeting.text">
      <p>{{greeting.text}},Angular</p>
    </div>
     <script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script>
  </body>
</html>

 运行结果:

如何复用view 

使用directive实现view的复用。

example.html

<html data-ng-app="HelloAngular">
  <head>
    <meta charset="utf-8">
  </head>
  <body>
     <hello></hello>
     <script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script>
     <script src="app.js"></script>
  </body>
</html>

app.js

angular.module('HelloAngular',[])
   .directive('hello', function() {
	return {
		restrict : 'E',
		template : '<div>Hi everyone!</div>',
		replace : true
	}
});

  运行结果:

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值