我制作一个与用户点击一起移动的“交互式菜单”.
我想知道有没有办法在ng-switch中包含html模板,
因为所有的逻辑在每个“开关”中是不同的 – 它将导致巨大的html文件.
我想知道有没有办法在ng-switch中包含html模板,
因为所有的逻辑在每个“开关”中是不同的 – 它将导致巨大的html文件.
<div class="content" ng-switch on="selection"> <div ng-switch-when="1" > <h1>1</h1> </div> <div ng-switch-when="2"> <h1>2</h1> </div> </div>
解决方法
使用ngInclude:
<div class="content" ng-switch on="selection"> <div ng-switch-when="1" > <ng-include src="'template1.html'"></ng-include> </div> <div ng-switch-when="2"> <ng-include src="'template2.html'"></ng-include> </div> </div>
注意:如果您正在硬编码路径,请勿忘记使用双引号内的单引号.