#鸿蒙学习大百科#如何监听RichEditor添加完成粘贴前可触发的回调?

如何监听RichEditor添加完成粘贴前可触发的回调?

HarmonyOS
2024-10-26 09:20:53
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
天涯独一隅

通过onPaste添加完成粘贴前可触发的回调。

RichEditor(this.options)
  .onReady(() => {
    this.controller.addTextSpan('对此处文本进行复制及粘贴操作可触发对应回调。', {
      style: {
        fontColor: Color.Black,
        fontSize: 15
      }
    })
  })
  .onPaste(() => {
    this.controller1.addTextSpan('触发onPaste回调\n', {
      style: {
        fontColor: Color.Gray,
        fontSize: 10
      }
    })
  })
  .width(300)
  .height(70)
分享
微博
QQ
微信
回复
2024-10-26 17:45:00
相关问题