当前位置: 移动技术网 > IT编程>脚本编程>AngularJs > AngularJS实现根据变量改变动态加载模板的方法

AngularJS实现根据变量改变动态加载模板的方法

2018年05月08日  | 移动技术网IT编程  | 我要评论

本文实例讲述了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="'views/1.html'"></ng-include></div>
  <div ng-switch-when="2"><ng-include src="'views/2.html'"></ng-include></div>
  <div ng-switch-when="3"><ng-include src="'views/3.html'"></ng-include></div>
 </div>

 希望本文所述对大家angularjs程序设计有所帮助。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网