anagularJs 명령의 controller,link,compile는 뭐가 달라요?
/directives.js exampleDirective
phonecatDirectives.directive('exampleDirective', function() {
return {
restrict: 'E',
template: 'Hello {{number}}!
',
controller: function($scope, $element){
$scope.number = $scope.number + "22222 ";
},
link: function(scope, el, attr) {
scope.number = scope.number + "33333 ";
},
compile: function(element, attributes) {
return {
pre: function preLink(scope, element, attributes) {
scope.number = scope.number + "44444 ";
},
post: function postLink(scope, element, attributes) {
scope.number = scope.number + "55555 ";
}
};
}
}
});
//controller.js
dtControllers.controller('directive2',['$scope',
function($scope) {
$scope.number = '1111 ';
}
]);
//html
실행 결과:
Hello 1111 22222 44444 55555 !
결과에서 알 수 있듯이 컨트롤러가 먼저 실행되고,compile가 실행되고,link가 실행되지 않습니다.
상례의compile 주석 지우기
// compile: function(element, attributes) {
// return {
// pre: function preLink(scope, element, attributes) {
// scope.number = scope.number + "44444 ";
// },
// post: function postLink(scope, element, attributes) {
// scope.number = scope.number + "55555 ";
// }
// };
// }
실행 결과:
Hello 1111 22222 33333 !
결과에서 알 수 있듯이 컨트롤러가 먼저 실행되고, 링크가 나중에 실행되며, 링크와compile가 호환되지 않습니다.
다음으로 전송:https://www.cnblogs.com/xuepei/p/5970477.html
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.