gpt4 book ai didi

javascript - 如何让 "back button"出现在 subview 中?

转载 作者:行者123 更新时间:2023-12-03 02:26:34 24 4
gpt4 key购买 nike

我是 ionic 新手,最令我困难的是导航主题。我有两个选项卡,分别称为“仪表板”和“ friend ”。我希望当我单击仪表板按钮时,我可以导航到名为“subview_dash”的 subview ,但我不希望在此 View 中显示选项卡。我的问题是我知道如何导航到此 View ,但我无法使返回按钮出现在“subview_dash”中。

enter image description here enter image description here

我该怎么做?我也很感激。

.state('tab', {
url: "/tab",
abstract: true,
templateUrl: "tabs.html"
})

// Each tab has its own nav history stack:

.state('tab.dash', {
url: '/dash',
views: {
'tab-dash': {
templateUrl: 'tab-dash.html',
controller: 'DashCtrl'
}
}
})

.state('tab.friends', {
url: '/friends',
views: {
'tab-friends': {
templateUrl: 'tab-friends.html',
controller: 'DashCtrl'
}
}
})

.state('subview_dash', {
url: '/subview_dash',
templateUrl: 'tab-subview_dash.html',
controller: 'DashCtrl'

})

这是我的代码:

http://plnkr.co/edit/Az3w9O8rkr7fJw4unIDz?p=preview

最佳答案

您在 tab-subview_dash.html 中使用此代码

<ion-view title="subview_dash">
<ion-nav-buttons side="left">
<button class="button button-clear ion-arrow-left-c" ng-click="backButton()"></button>
</ion-nav-buttons>
<ion-content class="has-header">
friends
</ion-content>
</ion-view>

并为 backButton() 编写函数,给出要重定向的路径

关于javascript - 如何让 "back button"出现在 subview 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48918468/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com