中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何监听RichEditor添加输入法输入内容前和完成输入后可触发的回调?
微信扫码分享
RichEditor(this.options) .onReady(() => { this.controller.addTextSpan('输入法输入内容前,触发回调。\n输入法完成输入后,触发回调。' , { style: { fontColor: Color.Black, fontSize: 15 } }) }) .aboutToIMEInput((value: RichEditorInsertValue) => { this.controller1.addTextSpan('输入法输入内容前,触发回调:\n'+JSON.stringify(value), { style: { fontColor: Color.Gray, fontSize: 10 } }) return true; }) .onIMEInputComplete((value: RichEditorTextSpanResult) => { this.controller1.addTextSpan('输入法完成输入后,触发回调:\n'+ JSON.stringify(value), { style: { fontColor: Color.Gray, fontSize: 10 } }) return true; }) .width(300) .height(50) Text('查看回调内容:').fontSize(10).fontColor(Color.Gray).width(300) RichEditor(this.options1) .width(300) .height(70)