AFAIK 这没有记录,但我在角度源中发现locals
指令示例中的属性:
angular.module('transclude', [])
.directive('pane', function(){
return {
restrict: 'E',
transclude: true,
scope: 'isolate',
locals: { title:'bind' },
template: '<div style="border: 1px solid black;">' +
'<div style="background-color: gray">{{title}}</div>' +
'<div ng-transclude></div>' +
'</div>'
};
});
它有什么作用?我该如何使用它?
编辑
更准确地说:
如何locals
从directive
的控制器或link
ing 功能访问?
如何locals
从directive
的控制器或link
ing 功能动态更改?
我可以locals
在每个指令中使用,还是必须是带有transclude=true
?