Set templateUrl base on attribute in directive

前端 未结 2 2167
借酒劲吻你
借酒劲吻你 2021-02-19 03:41

I\'m working on a set of angular directives and I want to load the correct template based on the presence or value of an attribute.



        
2条回答
  •  伪装坚强ぢ
    2021-02-19 04:20

    One of the solutions for this is to use an ng-include inside the template file.

    The first attribute inside of the template file will have something like :

    In your directive code you would write something like :

    scope : {direction : "="},
    link : function(scope,element,attrs)
    {
        scope.getTemplate = function(){
            if(scope.direction === "horizontal")
            {
                return "horizontal.html";
            }
            return "vertical.html";
        }
    }
    

    Hope this helps!

提交回复
热议问题