recherche

Maison  >  Questions et réponses  >  le corps du texte

angular.js - 如何动态修改directive templateUrl的值

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

        return {
            restrict:"E",
            templateUrl:""
        }
    });
曾经蜡笔没有小新曾经蜡笔没有小新2744 Il y a quelques jours1417

répondre à tous(1)je répondrai

  • 给我你的怀抱

    给我你的怀抱2017-05-15 17:08:04

    templateUrl peut renvoyer une fonction :

    home.directive('componentA', function() {
       return {
           restrict: 'E',
           link: function(scope, element, attrs) {
               //
           },
           templateUrl: function(elem,attrs) {
               return attrs.templateUrl || './default.html'
           }
       }
    });

    répondre
    0
  • Annulerrépondre