请联系该小程序的客服
登录不上什么原因?在物业交电费交电费为什么登录不上? [图片]
星期四 15:05你的工具什么版本
为什么2025年某个新版本后,开发者工具模拟器默认机型都强制变为了 HUAWEI Mate 60?只是给开发者工具升个级,结果每个小程序都要手动去改一次改成自己常用的分辨率。 更新这个功能的时候,就不能保留现有配置吗?一定要覆盖用户的当前设置吗??? [图片]
星期四 15:04[图片]这边测试正常
video组件不触发bindended?video组件不触发bindended 试过了小米和ios 都不行 开发工具可触发 代码很简单 <video src="" bindended="onVideoEnded" controls></video> onVideoEnded() { console.log('视频播放结束'); },
星期四 10:47试试这个版本https://developers.weixin.qq.com/miniprogram/dev/devtools/nightly.html
最新版开发工具为什么无法展示wxml?[图片][图片]
星期四 09:57[图片]按照这个步骤解封
开发者微信被限制添加好友状态,无法登录小程序开发者工具。开发者微信解不开 然后就登录不上开发者工具了。任何版本都不行。 [图片] [图片]
星期四 09:52试试这个版本https://developers.weixin.qq.com/miniprogram/dev/devtools/nightly.html
更新新版本后次日开机重启导致代码乱码?昨天更新开发者工具至1.06.2504010win32-x64版本,今天早上开机,发现打开A项目代码全部乱了。A项目的appid变成了B项目的appid,还混杂了B项目代码和C项目代码。
星期四 09:51工具版本多少
微信H5输入完页面地址后不跳转?微信H5输入完页面地址后不跳转,点了分离窗口后可用,修改其他选项也没好,点帮助的工具问题反馈后,弹出了验证码让我重新登录后,页面正常了
星期三 14:44请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
小程序签字画板,从上向下画竖线时,笔画断了。签名时从上向下画线,就会断,横向划线还好点。 [图片] [图片]
星期三 14:22请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
Canvas无法正常使用,出现画线会断的问题?canvas画布使用新版的,我是要控制画布的长宽:1:2,实际下来出现很多手机画线会断,横线还行,竖线一定会断。 [图片] <canvas class="canvas_content " type="2d" style='width:{{canvasWidth}}px; height:{{canvasHeight}}px' id="myCanvas" bindtouchstart="bindtouchstart" bindtouchmove="bindtouchmove" bindtouchend="bindtouchend" bindtouchcancel="bindtouchcancel"></canvas> ready() { wx.createSelectorQuery() .in(this) .select("#control") // canvas获取节点 .fields({ node: true, size: true, }) .exec((res) => { const deviceInFo = wx.getSystemInfoSync() const { windowWidth } = deviceInFo const padding = this.rpx2px(15) * 2 let canvasHeight = deviceInFo.windowHeight - padding let canvasWidth = canvasHeight * 2 if ((canvasHeight * 2 + res[0].width) > windowWidth) { let leftArea = deviceInFo?.safeArea?.left || this.rpx2px(15) canvasWidth = deviceInFo.windowWidth - this.rpx2px(15) - leftArea - res[0].width canvasHeight = canvasWidth / 2 } this.setData({ deviceInFo, canvasWidth, canvasHeight, }) this.initCanvas("init") }) }, initCanvas(type) { let ctx = null let canvas = null let { historyImag, canvasWidth, canvasHeight, deviceInFo, initialCanvasImg } = this.data wx.createSelectorQuery() .in(this) .select("#myCanvas") // canvas获取节点 .fields({ node: true, size: true, }) .exec((res) => { canvas = res[0].node console.log(`画布初始化完成了没`, res) ctx = canvas.getContext("2d") const width = res[0].width const height = res[0].height const dpr = wx.getWindowInfo().pixelRatio canvas.width = width * dpr canvas.height = height * dpr ctx.fillStyle = "rgb(200, 0, 0)" ctx.lineWidth = 4 if (historyImag.length !== 0 || (deviceInFo.platform !== "ios" && type !== "init")) { const image = canvas.createImage() image.onload = () => { ctx.drawImage(image, 0, 0, canvasWidth, canvasHeight) } image.src = historyImag[historyImag.length - 1] || initialCanvasImg } // 缩小/放大图像 ctx.scale(dpr, dpr) this.setData({ canvas, ctx, }) if (type === "init") { wx.canvasToTempFilePath({ canvas, png: "png", success: (res) => { const tempFilePath = res.tempFilePath this.setData({ initialCanvasImg: tempFilePath, }) }, }) } }) }, addPathDrop(event) { let { ctx, historyImag, canvas } = this.data let { type, changedTouches } = event let { x, y } = changedTouches[0] if (type === "touchstart"else { ctx.lineTo(x, y) ctx.stroke() ctx.moveTo(x, y) } if (type === "touchend" || type === "touchcancel") { }, }) } }
星期三 14:21请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
最新版本微信 touchend事件经常不触发?最近升级微信后,发现滑动触摸事件touchend 经常不触发,需要滑动好多次才可能触发。touchStart是可以触发的 真机和真机调试都有这个问题,开发工具上正常,电脑版微信也正常。小程序“爱乒乓”记分牌功能 上下滑动记分 [图片] 是新版微信导致的,解决方法:在上级view加了catchtouchmove="true"可以了
星期三 14:16