angular.js - 如何动态修改directive templateUrl的值
曾经蜡笔没有小新
曾经蜡笔没有小新 2017-05-15 17:06:04
0
1
1413

home.directive("content",function(){

        return {
            restrict:"E",
            templateUrl:""
        }
    });
曾经蜡笔没有小新
曾经蜡笔没有小新

reply all(1)
给我你的怀抱

templateUrl can return a function:

home.directive('componentA', function() {
   return {
       restrict: 'E',
       link: function(scope, element, attrs) {
           //
       },
       templateUrl: function(elem,attrs) {
           return attrs.templateUrl || './default.html'
       }
   }
});
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template