收藏
回答

kbone中使用editor, 插入图片宽度为100%, 通过v-html渲染后, 百分比变为px?

小程序editor使用custom-components进行封装转换的, 图片的插入方法如下

insertImage() {
  wx.chooseImage({
    count: 1,
    success: (res) => {
      this.editorCtx.insertImage({
        src: res.tempFilePaths[0],
        data: {
          id: 'abcd',
          role: 'god'
        },
        
        width: '100%',
        success: function (data) {
          console.log(data);
          console.log('insert image success');
        }
      });
    }
  });
}


当插入图片后, 调用 this.editorCtx.getContents() 查询的时候, 图片单位的确是百分比, 但这段富文本内容在通过v-html来渲染的时候, 百分比却被强制刷新成了px。希望尽快解决此bug

回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容
问题标签