如何从 Ionic 2 中的后退按钮更改标签?

How to change the label from back button in Ionic 2?(如何从 Ionic 2 中的后退按钮更改标签?)
本文介绍了如何从 Ionic 2 中的后退按钮更改标签?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

附上代码:

<ion-navbar *navbar>
</ion-navbar>

后退按钮已启用.但我需要自定义它(图标或标签).是否可以?在 docs/api 中找不到任何内容.

the back button is enabled. But I need to customize it (the icon or the label). Is it possible? Can't find anything in the docs/api.

推荐答案

您可以在您的 app.html 中设置返回按钮文本,如 ionic 链接 http://ionicframework.com/docs/v2/api/config/Config

you can set back button text in your app.html as mentioned in the ionic link http://ionicframework.com/docs/v2/api/config/Config

@App({
  template: `<ion-nav [root]="root"></ion-nav>`
  config: {
    backButtonText: 'Go Back',
    iconMode: 'ios',
    modalEnter: 'modal-slide-in',
    modalLeave: 'modal-slide-out',
    tabbarPlacement: 'bottom',
    pageTransition: 'ios',
  }
})

ionic 2 beta 8 中的更新

import {ionicBootstrap} from 'ionic-angular';

ionicBootstrap(AppRoot, customProviders, {
  backButtonText: 'Go Back',
  iconMode: 'ios',
  modalEnter: 'modal-slide-in',
  modalLeave: 'modal-slide-out',
  tabbarPlacement: 'bottom',
  pageTransition: 'ios',
});

ionic 2 rc.0 及更高版本以及 ionic 3 中的更新

在 ionic 2 rc.0 及更高版本中,我们需要在导入数组下的 app.module.ts 中包含配置.

In ionic 2 rc.0 and up, we need to include the configs in app.module.ts under imports array.

@NgModule({   
 declarations: [
    MyApp,
    Home   
 ],   
 imports: [
    IonicModule.forRoot(MyApp, {
      tabsPlacement: 'top',
      backButtonText: 'Back'
     })],
 bootstrap: [IonicApp],
 entryComponents: [
    MyApp,
    Home   ],
 providers: [MyService]
})

这篇关于如何从 Ionic 2 中的后退按钮更改标签?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)