我正在使用ASP.Net来渲染我的Angular 2应用程序,而我唯一的RAZOR页面是_Layout.cshtml,我希望能够将一些初始数据从RAZOR传递到我的自举组件中,但它不会似乎工作.
在我的_Layout.cshtml中,我有以下内容:
<my-app test="abc"></my-app>
在我的app.component.ts中,我有:
import { Component,Input } from "@angular/core"; @Component({ selector: 'my-app',template: "<div id='mainBody'>Test:{{test}}</div>",directives: [MenuBarComponent,ROUTER_DIRECTIVES] }) export class AppComponent { @Input() test; }
我的测试变量是空白的.有没有不同的方法来做到这一点,还是只是不可能?