ionic2懒加载配置详解
文章标题为part 1,并解释目前可以如此配置,但后续使用上可能还有变动。
以ion-cli默认home组件为例。添加home.module.ts文件
import { NgModule } from '@angular/core'; import { IonicPageModule } from 'ionic-angular'; import { HomePage } from './home'; @NgModule({ declarations: [HomePage], imports: [IonicPageModule.forChild(HomePage)], exports: [HomePage] }) export class HomePageModule { }
修改home.ts,主要是加入IonicPage,其配置项可参考官方文档。
import { Component } from '@angular/core'; import { IonicPage } from 'ionic-angular'; @IonicPage() @Component(... ) export class HomePage { ... }
修改app.component.ts, HomePage 改为 'HomePage' , 删除app.module.ts及其他页面用到的 import { HomePage } from '../pages/home/home'; 因为不需要这个了,在需要的位置直接字符串引用即可。
rootPage:any = 'HomePage';
ionic serve 看到如下类似文件代表成功。
相关推荐
yanzhelee 2020-10-13
开心就好 2020-06-16
80437700 2020-04-17
wanwanwandj 2020-04-09
iftrueIloveit 2020-03-01
cuterabbitbaby 2020-02-23
sunzhihaofuture 2020-01-09
林大夏 2020-01-06
王军强 2019-11-18
韩学敏 2019-11-09
Johnny0 2019-11-05
84251748 2019-11-04
codebiubiu 2019-11-04
comxpp 2011-12-11
keruis 2011-12-12
hanfox 2019-05-29
GeekGarden 2019-03-19
87133050 2018-11-25
longxx 2016-09-19