我有 3 个离子滑块。我的代码是这里github 上选项卡式幻灯片框的实现
我的代码如下所示:
<tab-slide-box>
<div class="tsb-icons">
<div class="tsb-ic-wrp">
<ion-scroll direction="x" class="tsb-hscroll">
<a href="javascript:;" class="header-icon ion-pie"></a>
<a href="javascript:;" class="header-icon ion-list-all"></a>
<a href="javascript:;" class="header-icon ion-home-omg"></a>
</ion-scroll>
</div>
</div>
<ion-slide-box show-pager="false" on-slide-changed="slideHasChanged($index)">
<ion-slide>
<h3>Pie content</h3>
</ion-slide>
<ion-slide>
<h3>List all content</h3>
</ion-slide>
<ion-slide>
<h3>Home content</h3>
</ion-slide>
</ion-slide-box>
我想要具有不同模板的 ion-slide 内容,饼图内容 => pie.html,列出所有内容 => listall.html,主页内容 => home.html。
但我不知道怎么做,对我有什么建议吗?提前致谢
顺便说一句,我阅读了这篇文章API attr=name ion-nav-view并查看示例。
我已经添加了这段代码:
<ion-slide>
<ion-nav-view name="home-index"></ion-nav-view>
</ion-slide>
和这个状态为家:
.state('app.home', {
cache: false,
url: "/home",
views: {
'home-index':{
templateUrl: 'templates/home.html',
controller: 'HomeCtrl'
},
'appContent':{
templateUrl: 'templates/home.html',
controller: 'HomeCtrl'
},
'menuList':{
templateUrl: 'templates/menu/menu.html',
}
}
})