我是Ionic的新手。我一直在尝试将几个HTML文件加载到离子幻灯片中。我已经尝试了几个解决方案,例如this和this。这是我的代码
<ion-view style="" title="Forum">
<ion-content class="has-header" padding="true" >
<ion-slide-box>
<ion-slide>
<h3 class="text-center">slide2</h3>
<ng-include src="'tes.html'"></ng-include>
</ion-slide>
<ion-slide>
<h3 class="text-center">slide3</h3
<ng-include src="'tes2.html'"></ng-include>
</ion-slide>
</ion-slide-box>
</ion-content>
</ion-view>
问题是该页面只显示了slide2单词,可以滑动到slide3,但所有幻灯片都不包含HTML。问题是我还在firefox浏览器上试验它。是因为浏览器还是对ng-include有任何特殊限制? Plunker