HarmonyOS RichEditor实现超过文字字数删除功能,发现删除功能失效

RichEditor无法实现输入文字超过限制功能。

HarmonyOS
2024-10-17 11:48:12
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zbw_apple
// 输入框文字校验  
inputNumCheck(){  
  this.controllerRich.getSpans({  
    start: this.start,  
    end: this.end}).forEach(item => {  
    if (typeof (item as RichEditorImageSpanResult)['imageStyle'] !== 'undefined') {  
      this.inputNum++  
    } else {  
      this.inputNum = (item as RichEditorTextSpanResult).value.length;  
    }  
  })  
}  
build() {  
  Column() {  
    Row(){  
      // 输入框  
      RichEditor({ controller: this.controllerRich})  
        .height($r('app.integer.chat_with_expression_chat_input_height'))  
        .layoutWeight(LAYOUT_WEIGHT)  
        .borderRadius($r('app.integer.chat_with_expression_chat_border_radius'))  
        .backgroundColor($r('app.string.chat_with_expression_input_background'))  
        .margin({ top: $r('app.integer.chat_with_expression_express_margin_top') ,left:14})  
        .key(this.focusKey)  
        .id(this.focusKey)  
        .placeholder('平台提倡文明用语,请温柔发言哦~',{font:{size:12},fontColor:'#999999'})  
        .defaultFocus(true)  
        .aboutToIMEInput((value: RichEditorInsertValue)=>{  
          if (this.inputNum >= 50) {  
            // 输入字符数超过50个 就禁止输入  
            try {  
              promptAction.showToast({  
                message: '最多只能输入50个汉字哦',  
                duration: 2000  
              });  
            } catch (error) {  
              let message = (error as BusinessError).message  
              let code = (error as BusinessError).code  
              console.error(`showToast args error code is ${code}, message is ${message}`);  
            };  
            return false  
          } else {  
            this.inputNumCheck()  
          }  
          return true  
        })
分享
微博
QQ
微信
回复
2024-10-17 15:13:27
相关问题
HarmonyOS元服务添加、删除功能
466浏览 • 1回复 待解决
【JS】如何实现左滑删除功能
3340浏览 • 1回复 待解决
Text如何实现删除线的功能
783浏览 • 1回复 待解决
RichEditor添加、删除、重载图片
932浏览 • 1回复 待解决
如何实现ArrayList的删除、去重等功能
291浏览 • 1回复 待解决
侧滑删除功能的列表有哪些?
701浏览 • 1回复 待解决
HarmonyOS Web 图片上传功能失效
123浏览 • 1回复 待解决
HarmonyOS Grid拖动+删除
17浏览 • 0回复 待解决
HarmonyOS 实现RSA加密功能
477浏览 • 1回复 待解决
HarmonyOS 分享功能如何实现
89浏览 • 1回复 待解决
HarmonyOS 换肤功能怎么实现
384浏览 • 1回复 待解决
HarmonyOS 手机应用删除数据
274浏览 • 1回复 待解决
删除按钮在哪里???
6722浏览 • 2回复 待解决
HarmonyOS如何实现头像选择功能
373浏览 • 1回复 待解决