2

我正在尝试将选项卡和侧面菜单连接在一起,我对自己做错了什么感到困惑。因为root属于sidemenu..

import {App, IonicApp, Platform} from 'ionic-framework/ionic';

import {HelloIonicPage} from './pages/hello-ionic/hello-ionic';
import {ListPage} from './pages/list/list';
import {TabsPage} from './pages/tabs/tabs';


// https://angular.io/docs/ts/latest/api/core/Type-interface.html
import {Type} from 'angular2/core';


@App({
  templateUrl: 'build/app.html',
  config: {} // http://ionicframework.com/docs/v2/api/config/Config/
})
class MyApp {
  // make HelloIonicPage the root (or first) page
  rootPage: Type = HelloIonicPage;
  pages: Array<{title: string, component: Type}>;

  constructor(private app: IonicApp, private platform: Platform) {

    this.initializeApp();

    // set our app's pages
    this.pages = [
      { title: 'Hello Ionic', component: HelloIonicPage },
      { title: 'My First List', component: ListPage },
      { title: 'testing tabs', component: TabsPage}
    ];
  }

  initializeApp() {
    this.platform.ready().then(() => {
      // The platform is now ready. Note: if this callback fails to fire, follow
      // the Troubleshooting guide for a number of possible solutions:
      //
      // Okay, so the platform is ready and our plugins are available.
      // Here you can do any higher level native things you might need.
      //
      // First, let's hide the keyboard accessory bar (only works natively) since
      // that's a better default:
      //
      // Keyboard.setAccessoryBarVisible(false);
      //
      // For example, we might change the StatusBar color. This one below is
      // good for dark backgrounds and light text:
      // StatusBar.setStyle(StatusBar.LIGHT_CONTENT)
    });
  }

  openPage(page) {
    // close the menu when clicking a link from the menu
    this.app.getComponent('leftMenu').close();
    // navigate to the new page if it is not the current page
    let nav = this.app.getComponent('nav');
    nav.setRoot(page.component);
  }
}

我是 ionic 新手,我遵循以下教程http://ionicframework.com/docs/v2/getting-started/tutorial/

它有标签或侧边菜单,但两者都没有。我已经导入了选项卡,但我不确定下一步该做什么,因为rootPage属于HelloIonicPage,我不想更改。

4

1 回答 1

-1

目前尚不完全清楚您为什么需要这样做,但这是可能的,并且附加的链接包含我合并模板生成的两个程序的代码。生成的程序使用 tab1 页面作为“入门”页面。每个标签页都提供侧边栏菜单。

  1. 我将'tabs'程序的pages文件夹中的文件夹复制到'sidemenu'程序。

  2. 从“入门”中,我复制了导航条码和侧栏的菜单。这似乎被包含指定标题的选项卡 2 和选项卡 3 页面继承(不确定原因)。所以我在每个页面中添加了一个带有 tab2 和 tab3 标题的 h1 作为标记。

  3. 我修改了 app.ts 文件以导入在步骤 1 中添加的页面。

  4. 我在 app.core.scss 中添加了 import 语句来导入 page1、page2 和 page3 html 文件

该方法可以允许在侧边栏上添加登录屏幕和其他实用程序屏幕(例如搜索)。

ionic 2 中合并的 Sidemenu 和 Tabs 代码

于 2016-02-14T05:06:36.303 回答