页面需要同时存在camera和wx.scancode才能复现么?请按照提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
华为鸿蒙系统使用camera无法扫码,同一页面同时camera会导致wx.scanCode扫码失效?华为mateX6 系统5.0.0.150 SP8。微信1.0.6 camera mode="scanCode"无法识别二维码,同时wx.scanCode也无法识别,选择相册图片可以识别。注释camera 后wx.scanCode可以正常扫码。但是有概率扫码后微信崩溃 <camera mode="scanCode" binderror="error" bindscancode="scanCodeAction"> </camera> <view bind:tap="choseImg">相册</view> choseImg() { let that = this wx.scanCode({ success: res => { console.log(res) let code = this.getAfterLastEqual(res.result) that.query({ code: code }) }, fail: (res) => { console.log(res) } }) },
星期三 18:40重定向域名也需要配置业务域名
小程序webview打开这个h5会先进到h5然后闪一下提示不支持打开?业务域名已配置https://healthdetection.test.yilanmeta.com:38686/static/footLength/data.html 单独h5访问是可以的,但是内嵌到小程序中跳转就会先进到h5,然后又中转到不支持的错误了,这时返回可以看到原网页,请问这种是什么情况? [图片][图片]
星期三 18:12看着像是请求地址网络问题 检查下
真机调试报错,这个问题我要怎么解决?[图片]
星期三 15:30请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
servicewechat.com报错unable to get local issue cert?[error] https://servicewechat.com/wxa/ci/getrandstr Error: unable to get local issuer certificate [error] 20001 Error: unable to get local issuer certificate [error] get wx9575069441699*** project attr fail Error: Error: unable to get local issuer certificate 在实现miniprogram-ci 功能时出现此问题 https://developers.weixin.qq.com/miniprogram/dev/devtools/ci.html
星期三 15:27试试工具最新nightly版本
开发者工具小程序模拟器点击有时没反应,有时有反应?Win11 2025-适用于 Windows 11 Version 23H2 的 03 累积更新,适合基于 x64 的系统 (KB5053602) 微信开发者工具 Stable 1.06.2503290 源代码:苍穹外卖:苍穹外卖教程资源: 黑马程序员Java项目实战《苍穹外卖》,最适合新手的SpringBoot+SSM的企业级Java项目实战中的小程序
星期三 15:25你好,请移步企微官方讨论区:https://developer.work.weixin.qq.com/community/question
企业微信的用户unionID和小程序的unionid不一致是什么原因?企业微信的用户unionID和小程序的unionid不一致是什么原因?
星期二 16:20小程序video组件本身没有类目开通要求
小程序的video组件有开通类目要求吗?或者其它条件?我们想做个本地视频广告功能,在小程序中插入一些弹窗视频,视频来自于我们的管理后台,这类功能用该需要用小程序的video组件实现播放,所以想问下video组件有开通类目要求吗?或者其它什么条件?
星期二 15:07你好,请移步企微官方讨论区:https://developer.work.weixin.qq.com/community/question
企业微信支付如何删除品牌信息之前因为好奇,将一个商标上传到后台了,目前没看到如何更换或者删除相关品牌的地方。请问这种情况如何申请官网的帮助。
星期二 10:41你好,请移步企微官方讨论区:https://developer.work.weixin.qq.com/community/question
企业微信年审问题?您好,刚提交了企业微信认证,已缴纳年费,为什么还显示需要小额打款呢?
星期二 10:33更新最新工具nightly版试试可以复现么
skyline环境下改变一张图片的宽高时会无限重复加载<snapshot id="view" class="snapshot-container" mode="view"> <!-- 外层横向滚动 --> <scroll-view scroll-x class="outer-scroll"> <!-- 内层纵向滚动 --> <scroll-view scroll-y class="inner-scroll" style="width: {{750 * scale}}rpx;"> <view class="image-wrapper" style="width: {{750 * scale}}rpx; height: {{750 * scale}}rpx;"> <image src="{{img}}" class="main-image" style=" width: {{750}}rpx; height: {{750}}rpx; transform: translate(-50%, -50%) scale({{scale}});" /> <!-- 遍历区域 --> <block wx:for="{{areas}}" wx:key="id" wx:for-item="areaItem"> <view class="element-container" style="right: {{areaItem.right * scale}}rpx; top: {{areaItem.top * scale}}rpx; width: {{areaItem.width * scale}}rpx; height: {{areaItem.height * scale}}rpx;border: {{generate ? (info.borderColor ? '1px dashed ' + info.borderColor : '1px dashed #999') : '1px dashed transparent'}}; box-shadow: 0px 0px 5px 2px {{areaItem.id == currentContainerId && generate ? 'transparent' : 'transparent'}};" data-areaid="{{areaItem.id}}"> <!-- 当前区域的元素 --> <block wx:for="{{elements}}" wx:key="id"> <block wx:if="{{item.areaId === areaItem.id}}"> <!-- 图片元素 --> <view wx:if="{{item.type === 'image'}}" class="element image-element {{activeElementId === item.id && generate ? 'active' : ''}}" style="width: {{item.width * scale}}rpx;height: {{item.height * scale}}rpx;left: {{item.x * scale}}rpx;top: {{item.y * scale}}rpx;transform: rotate({{item.rotate}}deg);opacity: {{item.opacity}};z-index: {{item.zIndex}};" catchtouchstart="handleTouchStart" catchtouchmove="handleTouchMove" catchtouchend="handleTouchEnd" data-id="{{item.id}}"> <image src="{{item.src}}?width={{item.width}}" mode="aspectFill" class="element-image" wx:key="{{item.src}}" /> <view class="resize-handle {{generate ? 'resizeactive' : ''}}" catchtouchstart="handleResizeStart" data-id="{{item.id}}" style="transform: scale({{1 * scale}});"></view> </view> <!-- 文字元素 --> <view wx:if="{{item.type === 'text'}}" class="element text-element {{activeElementId === item.id && generate ? 'active' : ''}}" style="width: {{item.width * scale}}rpx;height: {{item.height * scale}}rpx;left: {{item.x * scale}}rpx;top: {{item.y * scale}}rpx;transform: rotate({{item.rotate}}deg);opacity: {{item.opacity}};color: {{item.color}};writing-mode: {{item.vertical ? 'vertical-rl' : 'horizontal-tb'}};font-size: {{item.fontSize * scale}}rpx;letter-spacing: {{item.spacing * scale}}rpx;z-index: {{item.zIndex}};" catchtouchstart="handleTouchStart" catchtouchmove="handleTouchMove" catchtouchend="handleTouchEnd" data-id="{{item.id}}"> {{item.content}} <view class="resize-handle {{generate ? 'resizeactive' : ''}}" catchtouchstart="handleResizeStart" data-id="{{item.id}}" style="transform: scale({{1 * scale}});"></view> </view> </block> </block> </view> </block> </view> </scroll-view> </scroll-view> </snapshot
05-11