我想将登录页面设置为此应用程序的根页面,所以我更改app.component.ts中的代码,如下所示
import { Component } from '@angular/core';
import { Platform } from 'ionic-angular';
import { StatusBar } from '@ionic-native/status-bar';
import { SplashScreen } from '@ionic-native/splash-screen';
import { HomePage } from '../pages/home/home';
import {LoginPage } from '../pages/login/login';
@Component({
templateUrl: 'app.html'
})
export class MyApp {
rootPage:any = LoginPage;
constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen) {
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();
splashScreen.hide();
});
}
}
错误:找不到LoginPage的组件工厂。你有没有把它添加到@ NgModule.entryComponents?错误:找不到LoginPage的组件工厂。
答案 0 :(得分:0)
此处的错误消息是关键,请查看您的 app.module.ts ,并确保您的LoginPage包含在相应的部分中。
查看示例here,了解您的网页应该被引用的位置。
特别注意以下部分: entryComponents