wangeditor 使用 base64 保存图片失败
请问有遇到过wangeditor 使用base64保存图片时 上传不上图片的问题吗。
代码如下
<template>
<div class="editor-wrap">
<div class="account-editor" ref="editor"></div>
</div>
</template>
<script>
import WangEditor from 'wangeditor';
export default {
name:'editor',
data(){
return{
editor: '', // 存放实例化的wangEditor对象,在多个方法中使用
}
},
props:['catchData'],
methods: {
createEditor(){ // 创建编辑器
this.editor = new WangEditor(this.$refs.editor);
this.initEditorConfig(); // 初始化编辑器配置,在create之前
this.editor.customConfig.onchange = (html) => {
this.editorContent = html;
this.catchData(html) //把这个html通过catchData的方法传入父组件
}
this.editor.create(); // 生成编辑器
},
initEditorConfig(){ // 初始化编辑器配置
this.editor.customConfig.uploadImgShowBase64 = true; // 使用 base64 保存图片
},
},
mounted(){
this.createEditor()
}
}
</script>
上传时不显示图片也不报错,有遇到过的吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
需要聚焦 div如果上来就点击上传图片的话是不行的 需要先点击一下div的框 然后才可以