在这段代码中:
app.directive( 'myCustomDirective', function() {
return {
restrict: 'EA',
scope: { value: '=myCustomDirective', clickable: '&', editing: '=' },
template: '<span ng-click="handleClick()" ng-bind="value"></span>',
...
表示什么clickable: '&'
?
当我找到 Angular 文档时,我无法理解。它似乎是用 catch-22 代码编写的,只有已经理解所解释内容的人才能理解。
例如,我找到了这个视频,它显然解释了 & 的事情,但他可能一直在说普通话。