0
我是新的角度2.我使用的是與asp.net MVC的angularjs 2,我想在app.component中使用我的_layout.cshtml(母版頁)作爲templateUrl。angularjs 2將組件templateUrl設置爲MVC中的_layout
像角1我在_layout頁面上使用ng-app =「my-app」,我可以在每個內容頁面上使用角度。如何做到這一點在angularjs 2
這裏是我的app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
templateUrl:'/views/shared/_layout.cshtml'//i want to do that
}) 出口類AppComponent {
test: string = "";
}
我想用我的觀點(CSHTML)作爲templateUrl,直接想在視圖使用angularjs