当前位置: 首页 > 知识库问答 >
问题:

javascript - uniapp在mounted内这么使用uni.createSelectorQuert()报错,请问如何解决?

微生俊名
2023-06-06

出现这个错误的原因是在其它的页面也使用了这个api,但是页面并未渲染,导致报错。
image.png
image.pngimage.png

共有1个答案

韦阳辉
2023-06-06

试一下直接在后面.select,去掉query.selsect

         return new Promise((resolve) => {
                wx.createSelectorQuery()
                    .in(this)
                    .select('#van-circle')
                    .node()
                    .exec((res) => {
                    const canvas = res[0].node;
                    const ctx = canvas.getContext(type);
                    if (!this.inited) {
                        this.inited = true;
                        canvas.width = size * dpr;
                        canvas.height = size * dpr;
                        ctx.scale(dpr, dpr);
                    }
                    resolve(adaptor(ctx));
                });
            });
 类似资料: