经过长时间阅读各种博客和网站中有关 AngularJS 指令的文档。
我刚刚了解了完整的指令流程
流量将从
编译 -> 控制器 -> preLink -> postLink 或 (Link)
如果你想在编译阶段添加angular(ng-model, ng-style,ng-src) 的任何核心指令
var app;
app = angular.module('App', []);
app.directive('myDirective', [
'$compile', function($compile) { // Crucial Part
return {
scope: true,
compile: function(element, attrs) {
element.attr('ng-src', '{{imageModel}}');
element.attr('ng-click', 'updateImage()');
element.removeAttr('my-directive'); // Crucial Part
return {
pre: function(scope, ele, attb) {},
post: function(scope, ele, attb) {
$compile(ele)(scope);
return scope.updateImage = function() {
return scope.imageModel = "http://www.google.com/logos/doodles/2015/halet-cambels-99th-birthday-6544342839721984-hp2x.png";
};
}
};
},
controller: function($scope, $element, $attrs) {
return $scope.imageModel = null;
}
};
}
]);
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<meta charset="utf-8">
<title>JS Bin</title>
<style>
img {
max-width: 100%;
}
</style>
</head>
<body ng-app='App'>
<img src="https://www.google.co.in/images/srpr/logo11w.png" alt="" my-directive>
</body>
</html>
我将解释其中涉及的必要步骤。
第一阶段(编译):-
在此阶段添加您想要的核心角度指令或自定义指令
element.attr('ng-src', '{{imageModel}}'); // For dynamic image url changes
element.attr('ng-click', 'updateImage()'); // The trigger to update image
element.removeAttr('my-directive'); // **Crucial step please remove your custom directive attribute**
如果您在 $compile() 期间不删除自定义指令,它将无限循环
第二阶段(控制器):-
在这些阶段定义所有需要的模型和功能(我知道我已经在 postLink 中定义了 updateImage() 。它也有效!)
$scope.imageModel = null // 初始化
第三阶段(链接):-
顺序是先 preLink ,然后是 postLink 。我没有在预链接中定义任何内容。
postLink :- $compile(element)(scope)。这实际上将编译元素中涉及的所有指令并动态绑定它们。(vola)。一切都按预期工作。
谢谢。如果您觉得我遗漏了一些要点或误解了这个概念,请随时更新。
JSBin 链接https://jsbin.com/parote/edit?html,js,output