首頁 >php教程 >PHP开发 >AngularJS實作根據變數改變動態載入模板的方法

AngularJS實作根據變數改變動態載入模板的方法

高洛峰
高洛峰原創
2016-12-07 15:48:071171瀏覽

本文實例講述了AngularJS實作根據變數改變動態載入模板的方法。分享給大家參考,如下:

directive:

return {
    restrict: 'E',
    replace: true,
    templateUrl: 'app/view/order.html',
    link: function (scope, element, attrs) {
      scope.Type = attrs.Type;
    }
};

   

模板:

<div ng-switch on="item.Type">
 <div ng-switch-when="1"><ng-include src="&#39;views/1.html&#39;"></ng-include></div>
 <div ng-switch-when="2"><ng-include src="&#39;views/2.html&#39;"></ng-include></div>
 <div ng-switch-when="3"><ng-include src="&#39;views/3.html&#39;"></ng-include></div>
</div>

   

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn