如何动态地将值附加到ion-textarea?

时间:2019-07-28 21:54:23

标签: angular ionic-framework ionic4

我是离子性的新手,棱角分明。如何将字符串值动态附加到ion-textarea。

我知道我可以使用如下所示的字符串插值替换整个文本区域的值。但是如何附加值?即添加到现有内容。

            <ion-textarea 
            formControlName="message" 
            spellcheck="form" placeholder="write here...." 
            auto-grow 
            rows="2"
            value="{{appendedValue}}"
            >
            </ion-textarea>

1 个答案:

答案 0 :(得分:1)

将值更改为ngModel,2种方式进行数据绑定

        <ion-textarea 
          formControlName="message" 
          spellcheck="form" placeholder="write here...." 
          auto-grow 
          rows="2"
          [(ngModel)]="appendedValue“
        >
        </ion-textarea>

或在[]之间放置值,以分配变量appendedValue的值。

        <ion-textarea 
          formControlName="message" 
          spellcheck="form" placeholder="write here...." 
          auto-grow 
          rows="2"
          [value]="appendedValue"
        >
        </ion-textarea>