如何在_Layout.cshtml

时间:2017-04-07 10:48:14

标签: asp.net-mvc angular single-page-application

我有.netCore / angular2 shop SPA app。

似乎有两种方法可以布局90%的页面html'模板':

  • app.component.html或
  • _Layout.cshtml

我已经使用带有@RenderBody()标签的_Layout.cshtml来显示角度内容。

在这个_Layout.cshtml中如何嵌入我的一个angular2组件。例如CartSummaryComponent。

  <ul class="userMenu">
      @Html.Partial("_LoginPartial")
    <li class="pull-right"><CartSummaryComponent></CartSummaryComponent></li>
 </ul>

CartSummaryComponent在app.component.html模板中工作正常但我在_LoginPartial中需要它。

0 个答案:

没有答案