- 小程序-webkit-min-device-pixel-ratio获取图片失败
[图片] [图片] [图片] 用mpvue出现这样的错误
2018-06-07 - SubscriptionsSetting无法获取到 itemSettings对象?
在使用wx.getsetting获取用户订阅信息时 ,在成功的回调函数中SubscriptionsSetting无法获取到 itemSettings对象 wx.getSetting({ withSubscriptions: true, success (res) { console.log(res); console.log( res.subscriptionsSetting); console.log(res.subscriptionsSetting.itemSettings); }, fail(res) { } })
2020-06-09 - onBluetoothDeviceFound在部分安卓手机,没办法回调
终端类型:微信安卓客户端 手机机型:华为STK-AL00 安卓系统版本:9 微信版本:7.0.14 基础库版本:2.11.0 用户微信:ceyn-2014 操作路径:openBluetoothAdapter执行成功->startBluetoothDevicesDiscovery执行成功->onBluetoothDeviceFound没有触发回调。 已采取措施:打开gps,打开位置权限,已上传日志,微信号:ceyn-2014 麻烦尽快回复问题,谢谢!
2020-05-15 - 关于wx.startBluetoothDevicesDiscovery蓝牙扫描广播是否存在漏包?
测试方法:蓝牙设备每秒广播一次,且数据自增0.1。 现象:调试时发现大概5秒才会接收到一次广播数据。 已排出蓝牙设备本身问题,因为用其他蓝牙调试工具检测可以测出每秒广播一次 [图片] function startBluetoothDevicesDiscovery(callback){ if (!bleState.discoverStarted){ //deviceList = [] //调用扫描接口 setTimeout(()=>{ wx.startBluetoothDevicesDiscovery({ allowDuplicatesKey: true, interval: 1000, success: function (res) { bleState.discoverStarted = true //callback(false, '正在扫描') //接口调用成功,设置监听事件 onBluetoothDeviceFound(callback) }, fail: function (res) { bleState.discoverStarted = false startBluetoothDevicesDiscovery(callback) } }) },1000) } }
2020-03-11 - 小程序怎么跳转到绑定的公众号文章页?
网上搜到小程序能跳转到公众号页面,具体应该怎么实现呢?跪求大神为小弟详细解答一下!
2019-01-25 - 公众号菜单跳转到小程序且带openId参数
现在遇到一个问题,需要从在公众号添加一个菜单,比如这个菜单叫“去小程序”,当用户点击“去小程序”的时候,就跳转到小程序去,并且带上这个用户的唯一标识openId。如何实现呢? 微信公众平台官网配置菜单的话,没法带openId这种参数,因为openId是变化的,每个用户的openId都不一样。
2019-02-21 - 公众号 点击模板消息 跳转关联小游戏 返回错误消息
公众号开发 通过点击推送的模板消息 跳转关联小程序,返回成功消息: {"errcode":0,"errmsg":"ok","msgid":506503072080822272} 但是通过点击推送的模板消息 跳转关联小游戏,返回错误消息: {"errcode":40013,"errmsg":"invalid appid hint: [2lDGka08524128]"} 推送模板消息填写参数格式一致,只是appid不同: { "touser":"...", "template_id":"...", "url":"...", "miniprogram":{ "appid":"...", //"pagepath":"" }, "data":{...} } 请问是哪里的问题,应该如何解决?
2018-10-17