我正在使用Asp.net-MVC和Angular 2创建一个多页面网站。在我的应用程序中有3个页面:登录页面,索引页面和联系页面。
应用程序中有两个角度模块:
应用程序中有3个角度组件
- LoginComponent
- GraphComponent
- ContactComponent
此应用程序应如何运作:
- 登录页面使用LoginModule。 LoginModule使用LoginComponent
- 索引页面使用IndexModule。 IndexModule使用GraphComponent和
ContactComponet
- 联系页面也使用IndexModule。 ContactModule仅供使用
ContactComponent。
我面临的问题是什么
- 如何在不同的页面上引导不同的模块。那是,
在登录页面上,我必须引导LoginModule并在Index Page和
联系我必须引导IndexModule。
- 如何在一个模块中有条件地使用include组件。就像我一样
在IndexModule中包含GraphComponent和ContactComponent
索引页面和联系页面上的IndexModule中的只有ContactComponent。
如果有什么不清楚的地方,请告诉我!!
谢谢!