gpt4 book ai didi

ionic2 - 菜单组件未显示

转载 作者:行者123 更新时间:2023-12-04 15:19:50 25 4
gpt4 key购买 nike

我正在努力添加一个 ' burger' menu进入空白的 ionic2 模板。不确定这里做错了什么,但我所做的只是生成一个空白的 ionic 模板,将模板字符串更改为 app.ts 中的 templateUrl 并将代码粘贴到 app.html 中。我没有收到任何控制台错误。

应用程序:

import {Component} from '@angular/core';
import {Platform, ionicBootstrap} from 'ionic-angular';
import {StatusBar} from 'ionic-native';
import {HomePage} from './pages/home/home';


@Component({
templateUrl: 'build/app.html'
})
export class MyApp {
rootPage: any = HomePage;

constructor(platform: Platform) {
platform.ready().then(() => {
// Okay, so the platform is ready and our plugins are available.
// Here you can do any higher level native things you might need.
StatusBar.styleDefault();
});
}
}

ionicBootstrap(MyApp);

应用程序.html:
<ion-menu [content]="content">
<ion-toolbar>
<ion-title>Pages</ion-title>
</ion-toolbar>
<ion-content>
<ion-list>
<button ion-item (click)="openPage(loginPage)">
Login
</button>
<button ion-item (click)="openPage(signupPage)">
Signup
</button>
</ion-list>
</ion-content>
</ion-menu>
<ion-nav [root]="rootPage"></ion-nav>

最佳答案

我错过了按钮

  <button right menuToggle>
<ion-icon name="menu"></ion-icon>
</button>

来自 home.html
<ion-navbar *navbar>
<ion-title>
Blank Starter
</ion-title>
<button right menuToggle>
<ion-icon name="menu"></ion-icon>
</button>
</ion-navbar>

<ion-content class="home">
<h1 text-center>Content goes here!</h1>
</ion-content>

关于ionic2 - 菜单组件未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37864072/

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