1.初始化editor
uni.createSelectorQuery().select('#editorId')
.context(res => {
this.editorCtx = res.context;
}).exec();
2.插入表情图片
this.editorCtx.insertImage({
src: item.imgUrl,
width: '25px',
height: '25px'
});
在插入表情图片后,使用过editorContext.blur()方法,去掉焦点,发现软键盘是先出现一下,然后又隐藏了;也使用过setInterval循环调用uni.hideKeyboard(),还是不行,点的速度快,也会先出现一下软键盘,然后又隐藏了
wentian
解决了吗
2021-10-12 08:59