我正在编写我的第一个离子应用程序并遇到一个小问题。
我有一个最初有登录界面的标签界面,一旦你登录就可以选择标签,在一个标签屏幕上我有一个你需要点击以显示更多选项的项目列表,但我可以'这些链接很有用,所以我觉得我的ui-sref有点不对劲......寻找第二双眼睛!它链接到我正在挣扎的个人资料视图,下面是我的app.js与路由和页面下面的链接。
app.js
.state('login', {
url: '/login',
templateUrl: 'templates/login.html',
controller:'loginCtrl'
})
// setup an abstract state for the tabs directive
.state('tab', {
url: "/tab",
abstract: true,
templateUrl: "templates/tabs.html"
})
.state('tab.profile', {
url: '/profile',
views: {
'profile': {
templateUrl: 'templates.tab.profile.html',
controller: 'profileCtrl'
}
}
})
然后是列表页面:
<ion-content has-header="true" padding="true" class="viewer-panel">
<div class="list">
<div class="item item-divider">
Profile
</div>
<a class="item item-icon-left" ui-sref="tab.profile">
<i class="icon ion-person"></i>
View profile
</a>