您的位置:首页 > Web前端 > AngularJS

AngularJS directive简述

2015-12-03 13:47 609 查看
转自:http://segmentfault.com/q/1010000002400734

官方API:http://docs.angularjs.cn/api/ng/service/$compile

一个民间详细介绍:http://blog.51yip.com/jsjquery/1607.html

问:

angular.module('docsTransclusionExample', [])
.controller('Controller', ['$scope', function($scope) {
$scope.name = 'Tobias';
}])
.directive('myDialog', function() {
return {
restrict: 'E',
transclude: true,
scope: {},
templateUrl: 'my-dialog.html',
link: function (scope, element) {
scope.name = 'Jeff';
}
};
});


答:

1.restrict
E: 表示该directive仅能以element方式使用,即:<my-dialog></my-dialog>
A: 表示该directive仅能以attribute方式使用,即:<div my-dialog></div>
EA: 表示该directive既能以element方式使用,也能以attribute方式使用

2.transclude
你的directive可能接受页面上的其他html内容时才会用到,建议你先去掉该参数。有些高阶了。

3.scope
当你写上该属性时,就表示这个directive不会从它的controller里继承$scope对象,而是会重新创建一个。

4.templateUrl
你的directive里的html内容

5.link
可以简单理解为,当directive被angular 编译后,执行该方法

这里你说的没错,
link
中的第一个参数
scope
基本上就是你说的上面写的那个
scope


element
简单说就是
$('my-dialog')


attrs
是个map,内容是你这个
directive
上的所有属性,例如:你在页面上如果这样写了
directive
:

<my-dialog type="modal" animation="fade"></my-dialog>


attrs
就是:

{
type: 'modal',
animation: 'fade'
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: