码迷,mamicode.com
首页 > 其他好文 > 详细

angular自定义指令-1

时间:2015-01-13 00:05:46      阅读:475      评论:0      收藏:0      [点我收藏+]

标签:

1、angular指令感觉就相当于写一个组件,扩展html的语法,比如你写了一个图片上产的组件input-image,引用的时候直接用指令引

<input-image ng-model="image_url"></input-image>

用就好

2、如何写angular指令,主要就是调用directive方法api,方法内返回一个包装特定属性对象

3、angular指令开始compile结束link

4、从外部像指令传递数据,有叫绑定策略,传递数据的主要有两种

@绑定和=绑定

区别:

1、@绑定从外部传递到内部,内部改变不会反映到外部,=绑定是双向的,任何一方的改变都会相互影响

2、@绑定是通过angular表达式{{ }}方式传递eg:<my-dir title="{{title}}"></my-dir>,=绑定传递值不需要表达式eg:<my-dir title="title"></my-dir>

下面写个简单的demo说明,

模板sometest.html

<div class="p_text">
	<p>
   		 <label>title:{{title}}</label><input type="text" ng-model="title">
	</p>
	<p>
	    <label>text:{{text}}</label><input type="text" ng-model="text">
	</p>
	<button  ng-click="alertTest()">点击test </button>{{alertTest}}===
</div>

指令定义:

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<script type="text/javascript" src="angular.js"></script>
	<style type="text/css">
		.p_text{
			border: solid 1px red;
		}
	</style>
</head>
	<div ng-controller="testController">
		<input type="text" ng-model="title" placeholder="expr...">
		title:{{ title }}<br/>
		<input type="text" ng-model="text" placeholder="text">
		text:{{text}}<br/>
		<input-test title="{{title}}" text="text" ng-click ="alertTest()"></input-test>
	</div> 
	<script type="text/javascript">
		angular.element(document).ready(function  () {
			var myApp = angular.module(‘myApp‘,[],angular.noop);
			myApp.directive(‘inputTest‘,function  () {
					return {
				   	    compile: angular.noop, 
			            templateUrl:"sometest.html", 
			            replace: false, 
			            scope: { 
			            	alertTest:‘&alertFun‘,
			                title:‘@title‘ , //directive里面的title取值为element属性titlearr的动态的值{{title}} --注意外部传递值的方式与 = 的不同{{}}
			                text:‘=text‘//directive里面text的取值为element属性textarr的值text在element中scope中的值,scope.text --注意外部的传递值的方式与@的不同 ""
			            },//这里的=title其实用的是 
			            restrict: ‘AE‘ 
			        }; 
			}).controller(‘testController‘,function  ($scope,$parse) {
				$scope.say = "hello worlds!";
				$scope.title = "外部title";
				$scope.text = "外部text";
				$scope.num = 1;
				$scope.alertTest = function  () {
					++$scope.num;
					alert($scope.num);
				}

			});
			angular.bootstrap(document, [‘myApp‘]);
		})
		
	</script>
</body>
</html>

  下一篇如何使用link和compile定义指令

angular自定义指令-1

标签:

原文地址:http://www.cnblogs.com/knightshibiao/p/4220125.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!