我在版本2.2.3中使用了角度並始終保持良好。 當我升級到版本2.4.4時出現了一個錯誤(下圖中的錯誤)。Angular2錯誤:無法將undefined或null轉換爲對象
下班後搜索發生了什麼我發現這個問題是因爲沒有更多的可能使用功能() => ExampleModule
屬性loadChildren的路由器。
爲了使用這個我需要更改loadchildren:() => ExampleModule
到loadchildren: 'path/example.module#ExampleModule'
,並且角度按預期工作。
Now i want know if the function type() => is not more supported to use or this happened because i created a error ?
謝謝你的幫助。我知道字符串模式和函數已經在很久以前使用過了,但是我提出了這個問題,因爲在angular site中沒有關於函數模式的更多解釋,只有字符串模式。 現在即時通訊不使用AOT,但一切按預期工作,我會繼續用字符串模式寫。 https://angular.io/docs/ts/latest/guide/router.html#!#asynchronous-routing – Carlinhos