Wangeditor版本4.7.15
遇到问题:Wangeditor封装成组件,在页面的弹框中使用,初次打开弹框,报错TypeError: Cannot read properties of null (reading ‘txt’)。原因是初次加载获取不到this.$refs.vueWangeditor对象,导致不能进行赋值操作。
页面代码,这种写法会报错
//封装后的组件,在弹框中使用
<editor
ref="vueWangeditor"
id="editor"
>
</editor>
//js部分
//info为修获取的内容 editInfo点击修改的方法
editInfo(info){
this.visible=true
//非组件封装使用 editor.txt.html(text)方法
//给封装组件的editor赋值
this.$refs.vueWangeditor.setHtml(info.value);
}
不报错写法
//js部分
editInfo(info){
this.visible=true
this.$nextTick(() => {
setTimeout(()=>{
//此时可以获取到this.$refs.vueWangeditor对象
this.$refs.vueWangeditor.setHtml(info.value);
},200)
});
}