https://developers.weixin.qq.com/miniprogram/dev/api/media/editor/EditorContext.insertImage.html
连续插入图片 后面多了许多换行
insertEmoji(e) {
const { type, imagesize, content, src, alt } = e.currentTarget.dataset;
let that = this;
if (type == 'image')
this.editorCtx.insertImage({
src,
width: imagesize,
height: imagesize,
alt,
success: function () {
// that.insertEmojiP()
console.log('插入表情图片成功!')
}
})
}
if (type == 'string') {
this.editorCtx.insertText({
text: content
})
}
},
这才插入张图片 图片后面就两个换行 连续插入多少张图片就有多少个换行
同问,我也遇到了这个问题
请问这个解决了吗