自定义指令函数参数返回对象的属性与值
1.restrict:
定义指定的值为E、C、M、A,其中A(属性)是最常用的调用方式,可以在包括低版本IE浏览器的所有浏览器中运行。
2.priority(优先级):number
作用于同一个元素的多个指令调用时,执行的先后顺序是按照优先级进行的。例如 ng-repeat在所有内置指令中的优先级是最高的。
3.terminal:Boolean
该属性的作用是停止运行比当前指令优先级低的指令,例如:ng-if 或者ng-view
4.replace(Boolean):
默认值为false,表示指令的模板会作为子元素插入指令所在元素内部,如果值为true,表示指令的模板会代替指令所在元素。
5.scope(指令作用域):
指令的每次调用对于作用域操作有三种可能:
(1).直接调用相同的作用域对象;
(2).从当前作用域继承一个新的作用域对象:
(3).创建一个通当前作用域相隔离的作用域:
scope的值为false时,即是第一种情况,值为true时,即是第二种情况。
<div>我是1:{{second}}</div> // 值为空
<div ng-controller="myController" ng-init="second = 'two'">
<div>我是2:{{second}}</div> // 值为two
<div ng-controller="secondController">
<div>我是三:{{second}}</div> // 值为two
<div>{{city}}</div> // 值为空
<div my-directive ng-init="city = 'BeiJing'">
{{city}} // 值为BeiJing
</div>
</div>
</div>
myApp.directive('myDirective',function(){
return {
restrict: 'A',
scope: true
}
});
当scope返回一个对象时,相当于创建了一个隔离的作用域
<div ng-init="city='beijing'">
<div>第一个:{{city}}</div> // beijing
<div directive-three></div> //
<div directive-four></div> // beijing
</div>
myApp.directive('directiveThree',function(){
return {
restrict: 'A',
scope: {},
template: '<div>第二个{{city}}</div>'
}
});
myApp.directive('directiveFour',function(){
return {
restrict: 'A',
scope: true,
template: '<div>第三个{{city}}</div>'
}
});
当scope的属性值为对象时,scope的数据交互方式为:
<div ng-controller="myController">
<div direcive-five ng-model="city" my-county="yuncheng" my-options="options" set-country="setCounty(country)"></div>
</div>
myApp.directive('directiveFive',function(){
return {
restrict: 'A',
scope: {
model: '=ngModel', // 双向绑定
county: '@myCounty', // 传入字符串
options: '<myOptions', // 传入复杂数据类型
set: '&setCountry' // 事件输出
},
template: '<div>第三个{{city}}</div>'
}
});
这周复习了一下angularjs 自定义指令的内容,发现了许多过去胡洛的知识点,认为自己以前学习的关于angularjs的东西都太片面零碎了,必须得系统化整理一下了。