在我的输入中,我输入123
。在提交时,我想要456
。
如何更改输入值?
我的HTML(Ionic2)
<ion-textarea [ngFormControl]="message"></ion-textarea>
的JavaScript
this.message.value = '456';
console.log('>>>', this.message.value); // output is '123'
答案 0 :(得分:3)
使用双向绑定 类似的东西:
<ion-textarea [(ngFormControl)]="message"></ion-textarea>