可以通过设置 TextArea 的 maxLength 属性来限制输入字符数量。参考代码如下:@Entry @Component struct TextAreaDemo { @State message: string = 'Hello World'; build() { Row() { Column() { Text(this.message) .fontSize(50) .fontWeight(FontWeight.Bold) TextArea().width('80%').height('15%').maxLength(5) .showCounter(true, { highlightBorder: false }) } .width('100%') } .height('100%') } }
可以通过设置 TextArea 的 maxLength 属性来限制输入字符数量。参考代码如下: