directive()的第二個參數(shù),傳入$compile參數(shù)的情況angular.module('name1').directive('directiveName', function($compile) {
return{
restrict: 'E',
scope: {},
link:function(scope,element,attrs){
//一些DOM操作
$compile(element.contents())(scope.$parent); //疑點
}
}
}
疑點:$compile()()的作用及用法希望大家能幫幫忙
Angular指令的編寫
UYOU
2018-09-03 13:13:21