在这段代码中:
app.directive( 'myCustomDirective',function() { return { restrict: 'EA',scope: { value: '=myCustomDirective',clickable: '&',editing: '=' },template: '<span ng-click="handleClick()" ng-bind="value"></span>',...
可点击的内容:’&’表示?
当我找到Angular文档时,我无法理解它。它似乎写在一个catch-22代码中,只有那些已经了解什么是解释的人才能理解。
例如,我发现this video,这显然解释了&事情,但他也可以说普通话。
更新:新的指令API为
here
原文链接:https://www.f2er.com/angularjs/144995.htmlUnderstanding Scopes doc有更多的解释,他们提供了这个有用的link。
当我想了解这个东西的时候,我做了一个Fiddle。
angular.module('scopePropertiesModule',[]) .directive('scopeProps',function(){ return { restrict: 'C',scope: {parameterTitle:'@',bidirecTitle:'=',delegateDisplay:'&'},template: '<div>' + 'Parameter title :<br>' + '<input ng-model="parameterTitle"> => {{parameterTitle}}<br>'+ '<br>' + 'Biderectional title :<br>' + '<input ng-model="bidirecTitle"> => {{bidirecTitle}}<br>' + '<br>' + 'Delegate display :<br>' + '{{delegateDisplay()}}<br>' + '</div>' } });
随意玩它。