Heim > Fragen und Antworten > Hauptteil
home.directive("content",function(){
return {
restrict:"E",
templateUrl:""
}
});
给我你的怀抱2017-05-15 17:08:04
templateUrl可以返回一个函数:
home.directive('componentA', function() {
return {
restrict: 'E',
link: function(scope, element, attrs) {
//
},
templateUrl: function(elem,attrs) {
return attrs.templateUrl || './default.html'
}
}
});