- kbone的wxCustomComponent内的组件, 不能引用root的路径外的文件?
wxCustomComponent设置的root路径是映射到打包后的实际路径是吗?所以开发中不能引用wxCustomComponent设置的root外部的路径? 图中,wxCustomComponent 处在 wx-components 目录中,此目录下的组件无法引用根目录之外的任意路径。引用就报错 [图片] 在 wx-component 目录下 的组件引用和 wx-component 同级的其他文件 [图片] 小程序编译时报错 [图片]
2021-05-27 - editor中插入的html标签, 使用background-image无效?
尝试在editor中去解析emoji插件的表情数据,但由于emoji是使用雪碧图background-position实现的, 所以每个表情都需要有background-image,尝试在标签上赋值, 发现在editor.setContents()中赋值后, 背景图并不生效。 const parsedComment = this.parseEmoji(this.data.comment); this.setData({ parsedComment, comment: '' }); const { html: oldHtml } = await this.editorCtx.getContents(); let comments = ''; parsedComment.forEach( (comment) => (comments += `<div style="background-image: url(http://bwx.yiban.cn/static/wechat_emoji/wechat_emoji.png);width: 64px;height: 64px">${comment.imageClass}</div>`) // (comments += `<span class="weui-icon_emotion ${comment.imageClass}" style="background-image: url('https://bwx.yiban.cn/static/wechat_emoji/wechat_emoji.png');width: 64px;height: 64px;color: red">${comment.imageClass}</span>`) ); // console.log(comments); this.editorCtx.setContents({ html: `${oldHtml}${comments}` }); 不行
2021-05-25 - 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 [图片]
2021-05-24