gpt4 book ai didi

javascript - 在 Meteor-Ionic 应用程序中删除导航栏后添加后退按钮

转载 作者:行者123 更新时间:2023-11-28 21:35:45 26 4
gpt4 key购买 nike

在 Meteor-Angular-ionic 应用程序中,在模板中隐藏 nav-bar 以实现全屏 View 后,使用

<ion-view hide-nav-bar="true">

我们如何在屏幕左上角添加一个返回按钮,让用户返回到上一页?

想法是在一个特定的模板/ Controller 中没有可见的导航栏,但仍然有一个后退按钮。

enter image description here

最佳答案

一个解决方案可能是添加您的自定义后退按钮,该按钮将导航到上一个屏幕。

在您的模板中,添加以下按钮

<button class="button icon-left ion-android-arrow-back button-clear button-dark" 
ng-click="myGoBack()">
</button>

现在,在您的 Controller 中定义自定义 myGoBack 函数

// Your controller
function MyCtrl($scope, $ionicHistory) {
// myGoBack method
$scope.myGoBack = function() {
$ionicHistory.goBack();
};
}

记得在你的 Controller 中注入(inject) ionicHistory 的依赖。

请引用链接ionNavBackButton 获取更多详细信息。

希望这会有所帮助。

谢谢!

关于javascript - 在 Meteor-Ionic 应用程序中删除导航栏后添加后退按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33979899/

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