我已经尝试过了:
example.html的:
<ion-textarea placeholder="Enter your thoughts" type="text">Test: {{ textboxContent }} </ion-textarea>
字符串textboxContent
填充了"Test"
。
textarea中没有任何内容。当然,除了占位符外。
答案 0 :(得分:1)
您可以使用ngModel来实现此目的
<ion-textarea placeholder="Enter your thoughts" type="text" [(ngModel)]="value">Test: {{ textboxContent }} </ion-textarea>
并在 component.ts ,
中export class Page{
value:string;
constructor(){
this.value="some value you want to fill"
}
}