自定义一个MyEdit组件,通过uni.createSelectorQuery()获取到的对象为null,但是在page页面中正常!
代码如下:
<editor id="editor" class="ql-container" placeholder="请输入内容..." showImgToolbar @ready="onEditorReady"></editor>
methods: {
// 富文本编辑器准备到位
onEditorReady() {
uni.createSelectorQuery()
.select('#editor')
.context(res => {
console.log(res); // 这里打印 res 为null
this.editorCtx = res.context;
})
.exec();
}
}
菜菜2
作为组件时,uni.createSelectorQuery().in(this).context 返回的 res是空对象 {}
2021-02-04 15:03
菜菜2
是我自己的问题,组件引入后,给他加了同样的id,导致的
2021-02-04 15:19