未捕获错误:找不到模块-Ionic 2



我正在进行Ionic 2项目,rootPage设置为AuthPage。后来,我(通过控制台)创建了另一个名为SplashPage的页面,但当我将rootPage设置为SplashPage时,我遇到了错误Uncaught Error: Cannot find module "./pages/splash/splash"(app.bundle.js:3188)。有什么问题吗?

应用

import {App, IonicApp, Platform} from 'ionic-angular';
import {ListPage} from './pages/list/list';
import {WishListPage} from './pages/wishlist/wishlist';
import {AuthPage} from './pages/auth/auth';
import {SplashPage} from './pages/splash/splash';
@App({
    templateUrl: 'build/app.html',
    config: {}, // http://ionicframework.com/docs/v2/api/config/Config/
    providers: [UserService]
})
class MyApp {
    rootPage: any = SplashPage;
    pages: Array<{title: string, component: any, user: string}>;
    user: any;
    constructor(private app: IonicApp, private platform: Platform,
                private userService: UserService) {
        this.initializeApp();
        this.user = userService;
        // used for an example of ngFor and navigation
        this.pages = [
            // No need to include this since the user shouldn't see
            // the login page again until their session/token expires
            //{ title: 'Login', component: AuthPage },
            // Since we don't need to fear our user manually navigating
            // via url, why not manage naviagtion permissions with simple
            // template conditionals `*ngIf`
            { title: 'Wishlist', component: WishListPage, user: "shopper"}, // SHOPPER
            { title: 'Current Orders', component: ListPage, user: "shopper" }, // SHOPPER
            { title: 'Orders', component: ListPage, user: "boxer" }, // BOXER
            { title: 'Profile', component: ProfilePage, user:"both" } // BOTH
        ];
    }

飞溅.ts

import {OnInit} from 'angular2/core';
import {NgIf} from 'angular2/common';
import {Page, NavController} from 'ionic-angular';
// @PAGES
import {AuthPage} from '../auth/auth';
@Page({
    templateUrl: 'build/pages/splash/splash.html',
    directives: [NgIf],
    providers: []
})
export class SplashPage {
    constructor() { console.log("@AuthPage: __init__"); }
}

看起来像是app.ts您正在调用类spalsh,但实际类名是SplashPage

请尝试,在#splash.ts 中将SplashPage重命名为Splash

最新更新