<input [value]="firstName">
将输入值绑定到firstName
如果我想要返回firstName但是有一个agrument,我该怎么做?
<input [value]="firstName('myarg here')"> <!-- what is the syntax to do that -on angular2 ->
答案 0 :(得分:1)
正如你已经在做的那样。
该功能必须在您的组件中。
@Component({
selector: 'my-app',
template: `
<div>
<h2>Hello {{name}}</h2>
<input [value]="firstname('test', 333, ['a', 'b'])"/>
</div>
`,
})
export class App {
name:string;
constructor() {
this.name = 'Angular2'
}
firstname(a1: string, a2: number, a3: any[]) {
return 'firstname ' + a1 + a2 + a3.join(',');
}
}