javascript – 在角度的ng切换中使用html模板

前端之家收集整理的这篇文章主要介绍了javascript – 在角度的ng切换中使用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>

注意:如果您正在硬编码路径,请勿忘记使用双引号内的单引号.

原文链接:https://www.f2er.com/js/153905.html

猜你在找的JavaScript相关文章