使用Angular 2的多页网站

时间:2016-11-17 09:44:33

标签: asp.net-mvc angular

我正在使用Asp.net-MVC和Angular 2创建一个多页面网站。在我的应用程序中有3个页面:登录页面,索引页面和联系页面。

应用程序中有两个角度模块:

  • 的LoginModule
  • IndexModule

应用程序中有3个角度组件

  • LoginComponent
  • GraphComponent
  • ContactComponent

此应用程序应如何运作:

  • 登录页面使用LoginModule。 LoginModule使用LoginComponent
  • 索引页面使用IndexModule。 IndexModule使用GraphComponent和 ContactComponet
  • 联系页面也使用IndexModule。 ContactModule仅供使用 ContactComponent。

我面临的问题是什么

  • 如何在不同的页面上引导不同的模块。那是, 在登录页面上,我必须引导LoginModule并在Index Page和 联系我必须引导IndexModule。
  • 如何在一个模块中有条件地使用include组件。就像我一样 在IndexModule中包含GraphComponent和ContactComponent 索引页面和联系页面上的IndexModule中的只有ContactComponent。

如果有什么不清楚的地方,请告诉我!!

谢谢!

0 个答案:

没有答案