解决了吗?
weapp-qrcode-canvas-2d二维码是悬浮的,目前本地真机调试没事,体验版二维码悬浮[图片] const query = this.createSelectorQuery() var that = this query.select('#qrcode').fields({node: true}).exec((qrcoderes) => { var canvas = qrcoderes[0].node qrcode({ canvas: canvas, canvasId: 'qrcode', width: util.pxToRpx(125), height: util.pxToRpx(125), padding: 0, text: res.result.activityMacheteMember.writeOffCode, }) // 获取临时路径 wx.canvasToTempFilePath({ canvasId: 'qrcode', canvas: canvas, x: 0, y: 0, width: util.pxToRpx(125), height: util.pxToRpx(125), destWidth: util.pxToRpx(125), destHeight: util.pxToRpx(125), success(res) { that.data.data.activityMacheteMember.tempImg = res.tempFilePath that.setData({ data: that.data.data }) }, fail(res) { console.error(res) } }) }) .qrcode { width: 250rpx; height: 250rpx; margin: 0 auto; display: none; } .canvas_icon { width: 250rpx; height: 250rpx; margin: 0 auto; } 目前真机调试没问题,但是发布到体验版二维码悬浮
03-07请问这个问题解决了吗
小程序线程报错,wx is not defined.急急急!!![图片] 最近在使用parse插件将html文本转化为wxml在页面显示,但是文字图片多的话插件会多次调用setdata,导致渲染很慢,点个弹窗都特别慢。 遂山人想到利用微信小程序的的多线程woker来解决,但是worker文件里面不能引用他之外的文件。所以在request文件夹内用,但是,总是报错wx is not defined是什么鬼?我正常是使用就不会报错啊。望大佬们帮忙解惑!!!
2021-02-22