我正在尝试构建一个简单的组件,只是一个打印参数但未显示参数的 div:
测试.html
<ion-content padding class="getting-started">
<my-component [test]="Something"></my-component>
</ion-content>
测试.ts
import {Page} from 'ionic-framework/ionic';
import {MyComponent} from './myComponent';
@Page({
templateUrl: 'build/pages/test/test.html',
directives: [MyComponent]
})
export class TestPage {
constructor() {
}
}
我的组件.ts
import {Component,Input} from 'angular2/core';
@Component({
selector: 'my-component',
template: `
<div>Param: {{test}}</div>
`,
})
export class MyComponent {
@Input() test;
constructor() {
}
}
结果:
我无法弄清楚我错过了什么。