所以我想在我的Ionic应用程序中添加一个新页面..我创建了文件夹' searchpage'通过'离子生成页面搜索页面'在命令行中。我已经添加了......
import { Searchpage } from '../searchpage/searchpage';
到了家里的顶部。并将其作为下面的@Component ......
@Component({
selector: 'page-home',
templateUrl: 'home.html'
})
export class HomePage {
constructor(public navCtrl: NavController, public authData: AuthData) {
}
logMeOut() {
this.authData.logoutUser().then( () => {
this.navCtrl.setRoot(LoginPage);
});
}
searchPage(){
this.nav.push(Searchpage);
}
}

然后在home.html中添加按钮...
<button ion-button color="positive" block (click)="searchPage()">
Search Page
</button>
&#13;
按钮出现但在点击时没有做任何事情。
请帮助我做错了什么?
答案 0 :(得分:0)
您还需要在Nat.add_1_r: forall n : nat, n + 1 = S n
文件中导入新页面。
然后将其添加到app.module.ts
和declarations
数组中。请参阅以下示例:
entryComponents