angularJS1笔记-(11)-自定义指令(transclude/priority/terminal)
自定义指令的属性 transclude:为true时,允许把html中新定义的指令中原来的dom运用到该指令的template中。
属性priority,设置该指令的优先级,优先级大的先执行,默认指令的优先级是0(但ng-repeat指令的优先级默认是1000)。 属性terminal:为true时,指示优先级小于当前指令的指令都不执行,仅执行到本指令。
index.html:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> </head> <body> <div ng-app="myApp"> <div ng-controller="firstController"> <custom-tags> <div>$AAAAAA $我是指令[one-transclude]元素内部的内容</div> </custom-tags> <div custom-tags2 custom-tags3></div> </div> </div> <script type="text/javascript" src="../../vendor/angular/angularJs.js"></script> <script type="text/javascript" src="app/index.js"></script> <script> </script> </body> </html>
index.js:
var myApp = angular.module('myApp', []) //定义第一个指令customTags .directive('customTags',function () { return{ restrict:"ECAM", template:"<div><span>新数据 </span><span ng-transclude></span>新数据</div>",//<span ng-transclude></span> 原来的dom replace:true,//为true时,允许把节点内原来的dom放入template中 transclude:true //为true表明我们希望在模板中将指令的内部元素嵌入到模板中的某个位置 设置的template或templateUrl都必须仅由一个最外层标签包裹 } }) //定义第二个指令customTags2 .directive('customTags2',function () { return { restrict:'ECAM', template:'<div>222</div>', replace:true, priority:-1 //指示指令的优先级,优先级大的先执行,默认指令们的优先级都是0,但ng-repeat指令的优先级是1000 } }) //定义第三个指令customTags3 .directive('customTags3',function () { return { restrict:'ECAM', template:'<div>333</div>', replace:true, priority:0, terminal:true //为true时,指示优先级小于本指令的优先级的directive都不再执行 } }) .controller('firstController',['$scope',function ($scope) { $scope.name = "张三"; }]);
运行结果: