AngularJS实现根据变量改变动态加载模板的方法
程序员文章站
2022-06-07 23:26:09
本文实例讲述了angularjs实现根据变量改变动态加载模板的方法。分享给大家供大家参考,具体如下:
directive:
return {
rest...
本文实例讲述了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程序设计有所帮助。
上一篇: 百度更新快照功能对网站收录有哪些好处?