如何将文本(字符串)插入ion-textarea?

时间:2017-06-29 13:04:58

标签: android typescript ionic-framework ionic3

我已经尝试过了:

example.html的:

<ion-textarea placeholder="Enter your thoughts" type="text">Test: {{ textboxContent }} </ion-textarea>


字符串textboxContent填充了"Test"

textarea中没有任何内容。当然,除了占位符外。

1 个答案:

答案 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"
  }
}