[AngularJS] Decorator a directive
Posted Answer1215
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[AngularJS] Decorator a directive相关的知识,希望对你有一定的参考价值。
‘use strict‘ .config(function config($provide) { $provide.decorator(‘ndTrackClickDirective‘, function diective($delegate) { /**@ngInject */ $delegate[0].compile = function() { // create a new link function return function(scope, el, attr) { /* Your code here*/ }; }; // remove the old link function delete $delegate[0].link; return $delegate; }); });
以上是关于[AngularJS] Decorator a directive的主要内容,如果未能解决你的问题,请参考以下文章
[AngularJS面面观] 24. 依赖注入 --- Value以及Decorator
angularjs-factory,provider,service,constant,value,decorator