我剛剛更新了我的Angular2項目RC4和路由器現在已經在控制檯發出此警告訊息,當我打開我的應用程序:在Angular2 RC4中,我如何向預編譯數組添加組件?
router.umd.js:2466 'FrontpageComponent' not found in precompile array. To ensure all components referred to by the RouterConfig are compiled, you must add 'FrontpageComponent' to the 'precompile' array of your application component. This will be required in a future release of the router.
我一直試圖弄清楚到底我需要做什麼解決這個問題,但由於文檔稀疏,我無法找到答案。這個預編譯數組是什麼,我可以在哪裏找到它,或者如何添加它?
這似乎是工作,但要確保我得到這個權利,如果這是我的應用程序組件: 從@角/核心'import {組件}; 從'@ angular/router'導入{ROUTER_DIRECTIVES}; 從'./components/frontpage/frontpage.component'導入{FrontPageComponent}; @Component({ \t的moduleId:module.id, \t選擇: '應用', \t模板: '<路由器出口>路由器出口>', \t指令:[ROUTER_DIRECTIVES], \t預編譯:[FrontpageComponent] }) export class AppComponent {}' 我需要導入並添加每個組件,我路由到數組中? – Jeeveegee
即使閱讀https://docs.google,我也不能說我完全理解這個主題。com/document/d/1VRNljdv-6QDY4_I0xx3DHd-IZ19QlthheMLdGGKAAzM/edit#heading = h.s4bm1zs9qwi7 ;-) –
該文檔有助於解釋它,現在我明白了一點。謝謝。 – Jeeveegee