下面記錄了在升級Angular8中遇到需要增加或變更的部分。
本人Angular開發(fā)學(xué)習(xí)筆記碟摆,持續(xù)更新晃财。
1.@ViewChild()
- Angular7寫法
@ViewChild('test') test;
- Angular8寫法
@ViewChild('test', {static: false}) test;
參考鏈接:Angular中文官網(wǎng)API - ViewChild
2.路由懶加載
- Angular7寫法
loadChildren: 'app/routes/index/index.module#IndexModule';
- Angular8寫法
loadChildren: () => import('app/routes/index/index.module').then(mod => mod.IndexModule)
在配置Angular8新的路由懶加載方法時,需要在tsconfig.json
文件中修改編譯模式為"module": "esNext"
典蜕,才能夠啟動成功断盛。
參考鏈接:Angular中文官網(wǎng)介紹 - 惰性加載路由配置