解决措施将状态变量赋值给TextInput或TextArea组件的text属性,在做点击清空事件时为状态变量赋值空字符串。代码示例@Entry @Component struct Index { @State text: string = 'Hello World'; controller: TextInputController = new TextInputController(); build() { Row() { Column() { TextInput({ placeholder: 'Please input your words.', text: this.text, controller:this.controller}).onChange((value) => { this.text = value; }) Button('Clear TextInput').onClick(() => { this.text = ''; }) } .width('100%') } .height('100%') } }
解决措施
将状态变量赋值给TextInput或TextArea组件的text属性,在做点击清空事件时为状态变量赋值空字符串。
代码示例