请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
系统组件都没动过,这个报错怎么处理呀,大佬们?unexpected `�` at pos 157 (env: Windows,mp,1.06.2401020; lib: 3.3.0)
2024-01-05清除浏览器缓存,再登录试试。
配置小程序消息推送,提示系统错误,请稍后尝试?[图片]
2024-01-05你好,这个是标准的网络错误。网上有很多排查方法的,可以参考下https://www.zhihu.com/question/21512577
wx.request经常fail?设置了30秒超时,但是还是经常有超时的,下面是常见的失败返回,一天都有428条失败的 [图片] 'err':'{"errno":5,"errMsg":"request:fail timeout"}' "err":{"errno":600001,"errMsg":"request:fail errcode:-118 cronet_error_code:-118 error_msg:net::ERR_CONNECTION_TIMED_OUT"} "err":{"errno":600003,"errMsg":"request:fail interrupted"} "err":{"errMsg":"request:fail -105:net::ERR_NAME_NOT_RESOLVED","errCode":600001} "err":{"errno":600001,"errMsg":"request:fail -103:net::ERR_CONNECTION_ABORTED"} "err":{"errno":600001,"errMsg":"request:fail -101:net::ERR_CONNECTION_RESET"} "err":{"errno":600001,"errMsg":"request:fail -109:net::ERR_ADDRESS_UNREACHABLE"} "err":{"errno":600001,"errMsg":"request:fail -200:net::ERR_CERT_COMMON_NAME_INVALID"}
2024-01-05请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
微信小程序Video组件出现音画不同步?微信小程序组件video,在播放长视频的时候,前期一分钟播放正常,一分钟后画面播放正常,但是出现声音卡顿,而且随着播放继续,声音会越来越卡,导致音画不同步,声音落后画面的越来越多,请问如何解决这个问题?目前在各种机型上,最新的微信版本上皆会发生,必现。
2024-01-05请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
iphone 中微信小程序中 canvas为什么无法绘制出图形?iphone14 plus 小程序中 canvas无法绘制出图形,在模拟器和小米10中正常。 微信版本8.0.45 ios17.2.1 实例代码如下: onReady: function (){ wx.createSelectorQuery() .select('#myCanvas') .fields({ node: true, size: true }) .exec(res=>{ var res0 = res[0]; let ctx = res0.node.getContext('2d'); //getContext返回Canvas 的绘图上下文 let canvas = res0.node; MainCanvasContext = ctx; //通过设备像素比等重新绘制宽高 const dpr = wx.getSystemInfoSync().pixelRatio console.log(dpr); canvas.width = res0.width * dpr //设置物理像素宽度 canvas.height = res0.height * dpr ctx.scale(dpr, dpr) ctx .fillStyle="#FF0000"; ctx .fillRect(0,0,100,100); }) }
2024-01-05请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
input设置了text-align:right之后,获取的焦点还是在placeholder的左侧input设置了text-align:right之后,获取的焦点还是在placeholder的左侧,不是应该在右侧吗[图片]
2024-01-05this.setData是改变数值的写法,能不能详细描述一下 请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
map组件动态设置事件不生效?data:{ mapSetting: { bindmarkertap: "bindmarkertap", bindlabeltap: "bindmarkertap" }, } 这样设置才能生效 this.setData({ mapSetting: { bindmarkertap: "bindmarkertap", bindlabeltap: "bindmarkertap" }, }) 这样设置模拟器正常,但是真机运行无法触发事件
2024-01-05请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
为什么在开发者工具中没有效果?[图片]
2024-01-05暂时支持最大200m
wx.downloadFile放开了200M下载文件的限制吗?刚成功下载了一个超过1G的视频。
2024-01-05你好,建议先参考下面的帖子提供的策略: wx.notifyBLECharacteristicValueChange在ios平台报10008? https://developers.weixin.qq.com/community/develop/doc/000400d4710490f6801a6e89d56000
notifyBLECharacteristicValueChange报错10008?wx.createBLEConnection成功后 用wx.notifyBLECharacteristicValueChange去enable一个perm为BT_GATTS_REC_PERM_WRITABLE_ENCRYPTION的特性的notify wx.notifyBLECharacteristicValueChange报错10008 ‘Encryption is insufficient’ 报错信息:enable response cccd fail: {errCode: 10008, errno: 1500104, errMsg: "notifyBLECharacteristicValueChange:fail set notify failed. deviceID = 7960633C-956E-BAE2-6C06-A0596FEE53E5, serviceID = 45C93E07-D90D-4B93-A9DB-91E5DD734E35, characteristicID = 45C93C16-D90D-4B93-A9DB-91E5DD734E35, errMsg = Encryption is insufficient."} 注意到SMP并没有走完,链接不是Secure Connection,所以BT_GATTS_REC_PERM_WRITABLE_ENCRYPTION的characteristic无法write(Encryption is insufficient) wx.createBLEConnection能否建立Secure Connection Pairing?不能的话有没有其他支持建立Secure Connection的API? wx.createBLEConnection成功但Simple Pair没有交换identity information: {errCode: , errno: , errMsg: "createBLEConnection:ok"}errCode: 0errMsg: "createBLEConnection:ok"errno: 0
2024-01-04