Angular.js1.X 学习笔记——自定义指令

Angular.js1.X 学习笔记——自定义指令

引言

指令(Directive)可以说是 AngularJS 的核心,与Vue不同,angular.js的指令涵盖的vue的组件功能,你可以把它简单的理解为在特定DOM元素上运行的函数,指令可以扩展这个元素的功能。例如,ng-click可以让一个元素能够监听click事件,并在接收到事件的时候执行AngularJS表达式。我们也可以自己创造新的指令。

指令定义

directive() 方法可以接受两个参数:

  • name(字符串)
    指令的名字,用来在视图中引用特定的指令。
  • factory_function (函数)
    这个函数返回一个对象,其中定义了指令的全部行为。在DOM调用指令时来构造指令的行为。
    angular.application(‘myApp’, [])
    1
    2
    3
    4
    5
    6
    7
    angular.application('myApp', [])
    .directive('myDirective', function() {
    // 一个指令定义对象
    return {
    // 通过设置项来定义指令,在这里进行覆写
    };
    });

参数

从 AngularJS 的官方文档中看到指令的参数如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
priority: 0,
template: '<div></div>', // or // function(tElement, tAttrs) { ... },
// or
// templateUrl: 'directive.html', // or // function(tElement, tAttrs) { ... },
transclude: false,
restrict: 'A',
scope: false,
controller: function($scope, $element, $attrs, $transclude, otherInjectables) { ... },
controllerAs: 'stringAlias',
require: 'siblingDirectiveName', // or // ['^parentDirectiveName', '?optionalDirectiveName', '?^optionalParent'],
compile: function compile(tElement, tAttrs, transclude) {
return {
pre: function preLink(scope, iElement, iAttrs, controller) { ... },
post: function postLink(scope, iElement, iAttrs, controller) { ... }
}
// or
// return function postLink( ... ) { ... }
},
// or
// link: {
// pre: function preLink(scope, iElement, iAttrs, controller) { ... },
// post: function postLink(scope, iElement, iAttrs, controller) { ... }
// }
// or
// link: function postLink( ... ) { ... }
}

restrict(字符串)

restrict是一个可选的参数。它告诉AngularJS这个指令在DOM中可以何种形式被声明。默认AngularJS认为restrict的值是A,即以属性的形式来进行声明。
可选值如下:

1
2
3
4
5
6
7
8
E(元素)
<my-directive></my-directive>
A(属性,默认值)
<div my-directive="expression"></div>
C(类名)
<div class="my-directive:expression;"></div>
M(注释)
<--directive:my-directive expression-->

这些选项可以单独使用,也可以混合在一起使用:

1
2
3
4
5
angular.module('myDirective', function(){
return {
restrict: 'EA' // 输入元素或属性
};
});

上面的配置可以同时用属性或注释的方式来声明指令:
<-- 作为一个属性 -->


<-- 或者作为一个元素 -->

priority(Number)

指令执行的优先级,用于多个指令同时作用于同一个元素时。例如:

1
2
3
<select>
<option ng-repeat="i in [1, 2]" ng-bind="i"></option>
</select>

上面的例子中,ng-repeat 指令和 ng-bind 指令同时作用于 option 元素,由于 ng-repeat 的 priority 为1000,ng-bind 的 priority 为0,因此先执行 ng-repeat,然后变量 i 的值才能用于 ng-bind 中。

template(String or Function)

HTML模板内容,用于下列情况之一:

  • 替换元素的内容(默认情况)。

  • 替换元素本身(如果 replace 选项为 true)。

  • 将元素的内容包裹起来(如果 transclude 选项为 true,后面会细说)。

值可以是:

  • 一个 HTML 字符串。例如:<div>my name is </div>

  • 一个函数,接收两个参数 tElement(元素本身) 和 tAttrs(元素的属性集合),返回 HTML 字符串。

templateUrl(String or Function)

templateUrl 和 template 作用相同,但模板内容是从 $templateCache 服务或远程 url 加载。

值可以是:

  • 一个字符串,AngularJS 会先从 $templateCache 中查找是否缓存了对应值,如果没有则尝试 ajax 加载。例如:在页面中有如下 script:

    1
    2
    3
    <script type="text/ng-template" id="Hello.html">
    <p>Hello</p>
    </script>

    AngularJS 会将 type="text/ng-template"script 标签中的内容以 id 值为 key 缓存到 $templateCache 服务中,此时可以设置 templateUrl: 'Hello.html'

  • 一个函数,接收两个参数 tElement(元素本身) 和 tAttrs(元素的属性集合),返回 url 地址。

transclude(Boolean)

官方文档的解释为:编译元素的内容,使其在指令内部可用。该选项一般和 ng-transclude 指令一起使用。

如果 transclude 设置为 true,则元素的内容会被放到模板中设置了 ng-transclude 指令的元素中。例如:

1
2
3
4
5
6
7
8
9
10
11
12
13
app.directive('testTransclude', [
function () {
return {
restrict: 'E',
transclude: true,
template:
'<div>\
<p>指令内部段落</p>\
<div ng-transclude></div>\
</div>'
};
}
]);
1
2
3
<test-transclude>
<p>该段落会被放到指令内部</p>
</test-transclude>

上面生成后的 DOM 结构为:
image.png

scope(Boolean or Object)

关于 scope 选项将会在后面的指令 scope 中细说。

controller(Function)

一般情况下不需要使用指令的 controller,只要使用 link 就够了,后面会细说 link 函数。

controller 的场景是该指令(a)会被其他指令(b)require 的时候,在 b 的指令里可以传入 a 的这个 controller,目的是为了指令间的复用和交流。而 link 只能在指令内部中定义行为,无法做到这样。

controllerAs(String)

为控制器指定别名,这样可以在需要控制器的地方使用该名字进行注入。

require(String or Array)

表示指令依赖于一个或多个指令,并注入所依赖指令的控制器到 link 函数的第四个参数中。如果所依赖的指令不存在,或所依赖指令的控制器不存在则会报错。

依赖名称前缀可以为:

  • (没有前缀) - 在当前元素中查找依赖指令的控制器,如果不存在则报错。

  • ? - 在当前元素中查找依赖指令的控制器,如果不存在传 nulllink 中。

  • ^ - 在当前元素及父元素中查找依赖指令的控制器,如果不存在则报错。

  • ?^ - 在当前元素及父元素中查找依赖指令的控制器,如果不存在传 nulllink 中。

例子:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
app.directive('validate', [
function () {
return {
restrict: 'A',
require: 'ngModel',
link: function (scope, ele, attrs, ngModelCtrl) {
// 监听值变化
ngModelCtrl.$viewChangeListeners.push(function () {
scope.validateResult = ngModelCtrl.$viewValue === 'Heron';
});
}
};
}
]);

app.controller('myCtrl', [
'$scope',
'$cookieStore',
function ($scope, $cookieStore) {
$scope.name = 'Heron';

$scope.sayHi = function (name, age) {
alert('Hello ' + name + ', your age is ' + age);
}
}
]);
1
2
3
4
5
6
<div ng-controller="myCtrl">
<input type="text" ng-model="name" validate>
<p>
validate 结果:{{validateResult}}
</p>
</div>

运行结果如图:

image.png

创建的创建过程可以分为编译(compile)阶段和链接(link)阶段,因此两者放一起讲。

两者区别在于:

  • compile 函数的作用是对指令的模板进行转换。

  • link 函数的作用是在视图和模型之间建立关联,包括注册事件监听函数和更新 DOM 操作。

  • scope 在链接阶段才会被绑定到元素上,因此 compile 函数中没有入参 scope

  • 对于同一个指令的多个示例,compile 函数只会执行一次,而 link 函数在每个实例中都会执行。

  • 如果自定义了 compile 函数,则自定义的 link 函数 无效,而是使用 compile 函数 返回的 link 函数。

指令 scope

scope 选项有三种值:

  • false - 使用父 scope。改变父 scope 会影响指令 scope,反之亦然。

  • true - 继承父 scope,并创建自己的 scope。改变父 scope 会影响指令 scope,而改变指令 scope 不会影响父 scope

  • {} - 不继承父 scope,创建独立的 scope。如果不使用双向绑定策略(后面会讲),改变父 scope 不会影响指令 scope,反之亦然。

例子:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
app.controller('myCtrl', [
'$scope',
'$cookieStore',
function ($scope, $cookieStore) {
$scope.scopeFalse = 'Heron';
$scope.scopeTrue = 'Heron';
$scope.scopeObject = 'Heron';
}
]);

app.directive('directiveFalse', [
function () {
return {
restrict: 'EA',
scope: false,
template:
'<div>\
<p>\
<span>指令 scope: </span>\
<input type="text" ng-model="scopeFalse">\
</p>\
</div>'
};
}
]);
app.directive('directiveTrue', [
function () {
return {
restrict: 'EA',
scope: true,
template:
'<div>\
<p>\
<span>指令 scope: </span>\
<input type="text" ng-model="scopeTrue">\
</p>\
</div>'
};
}
]);
app.directive('directiveObject', [
function () {
return {
restrict: 'EA',
scope: {},
template:
'<div>\
<p>\
<span>指令 scope: </span>\
<input type="text" ng-model="scopeObject">\
</p>\
</div>',
link: function (scope) {
// 由于使用独立scope,因此需要自己定义变量
scope.scopeObject = 'Heron';
}
};
}
]);
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div ng-controller="myCtrl">
<h3>scope: false</h3>
<p>
<span>父 scope: </span>
<input type="text" ng-model="scopeFalse">
</p>
<directive-false></directive-false>
<h3>scope: true</h3>
<p>
<span>父 scope: </span>
<input type="text" ng-model="scopeTrue">
</p>
<directive-true></directive-true>
<h3>scope: {}</h3>
<p>
<span>父 scope: </span>
<input type="text" ng-model="scopeObject">
</p>
<directive-object></directive-object>
</div>

运行结果如图:
image.png

针对独立 scope,可以通过在对象中声明如何从外部传入参数。有以下三种绑定策略:

  • @ - 使用 DOM 属性值单项绑定到指令 scope 中。此时绑定的值总是一个字符串,因为 DOM 的属性值是一个字符串。

    1
    2
    3
    4
    5
    <div my-directive age="26"></div>

    scope: {
    age: '@'
    }
  • = - 在父 scope 和指令 scope 之间建立双向绑定。

    1
    2
    3
    4
    5
    <div my-directive age="age"></div>

    scope: {
    age: '='
    }
  • & - 使用父 scope 的上下文执行函数。一般用于绑定函数。

    1
    2
    3
    4
    5
    <div my-directive sayHi="sayHi()"></div>

    scope: {
    sayHi: '&'
    }

绑定函数时,有时需要向指令外部传递参数,如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
app.controller('myCtrl', [
'$scope',
'$cookieStore',
function ($scope, $cookieStore) {
$scope.name = 'Heron';

$scope.sayHi = function (name, age) {
alert('Hello ' + name + ', your age is ' + age);
};
}
]);

app.directive('myDirective', [
function () {
return {
restrict: 'E',
replace: true,
scope: {
clickMe: '&'
},
template:
'<div>\
<button class="btn btn-info" ng-click="clickMe({ age: age })">点我</button>\
</div>',
link: function (scope) {
scope.age = 26;
}
};
}
]);
1
2
3
<div ng-controller="myCtrl">
<my-directive click-me="sayHi(name, age)"></my-directive>
</div>

运行结果如图:

image.png

说明一下:首先声明 clickMe: '&' 使用父 scope 的环境执行 clickMe 函数,然后在传递给指令时声明 click-me="sayHi(name, age)",表示父 scope 的 sayHi 方法需要两个参数,一个是 name,一个是 age,然后再指令中使用对象 {} 的方式向外传递参数,如 ng-click="clickMe({ age: age })",表示向指令外传递 age 参数,sayHi 方法从指令拿到 age 参数,再从自己的上下文中拿到 name 参数。

总结

AngularJS 指令的开发和使用千变万化,也有许多坑,希望大家留意。