解决措施暂时没有相关接口,可以通过自定义来实现参考代码Stack({ alignContent: Alignment.End }) { TextInput({ text: $$this.textValue, placeholder: "请输入密码", controller: this.controller }) .type(InputType.Normal) .onChange((v) => { console.log(this.textValue) }) Image($r("app.media.startIcon")).width(20).height(20).margin({ right: 8 }).onClick(() => { this.textValue = "" console.log(this.textValue) }) }
解决措施暂时没有相关接口,可以通过自定义来实现参考代码