我开始使用令人敬畏的离子框架开发应用程序。
我在你的帮助下设法制作了一个完美的条纹标签。现在我面临着向离子视图内容添加脚本的问题。
这是我的标签代码:my ionic tabs CODEPEN
这是我想要整合为标签内容的页面:my tab content which i want to ingegrate CODEPEN
我可以这样做吗?
<ion-view title="Home">
<div ng-controller="customersCtrl">
<div class="list">
<div ng-repeat="(competitionname, competition) in MatchesByCompetition">
<div class="item item-divider" >
{{ competition.name }}
</div>
<a class="item" href="#" align="center" ng-repeat="matche in competition.matches" >
<img ng-src="http://media-v4.i-dalgo3.com/Sport/Football/Team/Logo/55x55/logo_{{matche.team1.idTeam}}.png" style="width:28px; height:28px; position:absolute; left:10px; top:12px">
<h4 style=" display:inline-block; left:60px; position:absolute;"> {{matche.team1.name}}</h4> <h5 style=" display:inline-block;"> {{matche.newstartdate}}</h5> <h4 style=" display:inline-block; position:absolute; right:60px; ">{{matche.team2.name}}</h4>
<img ng-src="http://media-v4.i-dalgo3.com/Sport/Football/Team/Logo/55x55/logo_{{matche.team2.idTeam}}.png" style="width:28px; height:28px; position:absolute; right:10px; top:12px" >
</a>
</div>
</div>
</div>
</ion-view>
答案 0 :(得分:1)
您可以做的是,您可以添加另一个tab
<ion-tab title="list" ui-sref="list">
<ion-nav-view name="list"></ion-nav-view>
</ion-tab>
而不是使用像<script type="text/ng-template" id="home.html">
这样的内联scrips,您可以告诉ui-router
加载外部页面
在你的路由器
.state('list', {
url: '/list',
views: {
list: {
controler: 'customersCtrl',
templateUrl: '<path to your file>list.html'
}
}
})
事实上,将所有内联脚本移动到单独的文件是一个好主意
HTH