• <bdo id='AIw0Z'></bdo><ul id='AIw0Z'></ul>

    <small id='AIw0Z'></small><noframes id='AIw0Z'>

  1. <tfoot id='AIw0Z'></tfoot>
    <legend id='AIw0Z'><style id='AIw0Z'><dir id='AIw0Z'><q id='AIw0Z'></q></dir></style></legend>
  2. <i id='AIw0Z'><tr id='AIw0Z'><dt id='AIw0Z'><q id='AIw0Z'><span id='AIw0Z'><b id='AIw0Z'><form id='AIw0Z'><ins id='AIw0Z'></ins><ul id='AIw0Z'></ul><sub id='AIw0Z'></sub></form><legend id='AIw0Z'></legend><bdo id='AIw0Z'><pre id='AIw0Z'><center id='AIw0Z'></center></pre></bdo></b><th id='AIw0Z'></th></span></q></dt></tr></i><div id='AIw0Z'><tfoot id='AIw0Z'></tfoot><dl id='AIw0Z'><fieldset id='AIw0Z'></fieldset></dl></div>

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

      时间:2023-09-07

      <small id='qlilN'></small><noframes id='qlilN'>

      • <tfoot id='qlilN'></tfoot>
          <i id='qlilN'><tr id='qlilN'><dt id='qlilN'><q id='qlilN'><span id='qlilN'><b id='qlilN'><form id='qlilN'><ins id='qlilN'></ins><ul id='qlilN'></ul><sub id='qlilN'></sub></form><legend id='qlilN'></legend><bdo id='qlilN'><pre id='qlilN'><center id='qlilN'></center></pre></bdo></b><th id='qlilN'></th></span></q></dt></tr></i><div id='qlilN'><tfoot id='qlilN'></tfoot><dl id='qlilN'><fieldset id='qlilN'></fieldset></dl></div>
          <legend id='qlilN'><style id='qlilN'><dir id='qlilN'><q id='qlilN'></q></dir></style></legend>
              <tbody id='qlilN'></tbody>
            • <bdo id='qlilN'></bdo><ul id='qlilN'></ul>

                本文介绍了如何从 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 中的后退按钮更改标签?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:像 Ionic 2 中的模态一样警报 下一篇:Angular2指令修改点击处理

                相关文章

                最新文章

                  1. <small id='ETFK2'></small><noframes id='ETFK2'>

                    <tfoot id='ETFK2'></tfoot>
                    • <bdo id='ETFK2'></bdo><ul id='ETFK2'></ul>

                  2. <i id='ETFK2'><tr id='ETFK2'><dt id='ETFK2'><q id='ETFK2'><span id='ETFK2'><b id='ETFK2'><form id='ETFK2'><ins id='ETFK2'></ins><ul id='ETFK2'></ul><sub id='ETFK2'></sub></form><legend id='ETFK2'></legend><bdo id='ETFK2'><pre id='ETFK2'><center id='ETFK2'></center></pre></bdo></b><th id='ETFK2'></th></span></q></dt></tr></i><div id='ETFK2'><tfoot id='ETFK2'></tfoot><dl id='ETFK2'><fieldset id='ETFK2'></fieldset></dl></div>
                    <legend id='ETFK2'><style id='ETFK2'><dir id='ETFK2'><q id='ETFK2'></q></dir></style></legend>