- 小游戏,小程序测试号无法删除
小游戏测试号为什么无法删除呢?在公众平台安全助手里面删除了,可是依然还是未删除
2023-05-29 - wx.createBLEConnection()报 1003 连接失败?
开发低功耗蓝牙,连接BLE设备的时候,有大概率出现连接失败,wx.createBLEConnection() API回调走了fail,返回1003错误; 安卓;ios设备都会有此问题,安卓设备出现的概率更大; 微信基础库版本号:2.2.2
2020-05-05 - 小程序无法提交线上版本
小程序提交了审核,审核通过待发布,微信扫码发布线上版,。扫码提示成功,但是线上版本没有更新,还是之前的版本,多次提交仍然一样 [图片]
2019-12-26 - UnionID
- 云函数 cloud.getWXContext 获取不到 UNIONID 云函数代码如下: const cloud = require('wx-server-sdk') cloud.init() exports.main = async (event, context) => { return { OPENID, APPID, UNIONID } = cloud.getWXContext() } [图片]
2018-11-07 - canvas无法生成图片到系统相册,显示空白
[图片] - 预期表现 [图片] - 复现路径 // **分享到朋友圈 sharefriend: function (){ var that = this; wx.getSystemInfo({ success:res =>{ console.log('小程序信息', parseFloat(res.version)); if (parseFloat(res.version) < 6.6){ wx.showModal({ title: '提示', content: '当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试。' }) return false; }else{ that.setData({ share2: true, share: false }); wx.showLoading({ title: '正在生成图片...', mask: true, }); } } }); // 小程序获取图片信息API wx.getImageInfo({ src: that.data.ctxUrl, success: function (res) { console.log(res); that.setData({ ctxUrl: res.path }) }, fail(err) { console.log(err) } }) setTimeout(()=>{ var canvasCtx = wx.createCanvasContext('myCanvas'); canvasCtx.clearRect(0, 0, 0, 0); //绘制背景 canvasCtx.drawImage('../../img/write.png', 0, 0, that.data.windowWidth * 0.8, that.data.windowHeight * 0.8); //绘制名称 canvasCtx.setFontSize(18); canvasCtx.setTextAlign('center'); canvasCtx.fillText(that.data.ctxName, that.data.windowWidth * 0.8 / 2, 120); // 绘制信息 canvasCtx.setFontSize(18); canvasCtx.setTextAlign('center'); canvasCtx.fillText(that.data.ctxRank, that.data.windowWidth * 0.8 / 6, 180); canvasCtx.fillText(that.data.ctxNum, that.data.windowWidth * 0.8 / 2, 180); canvasCtx.fillText(that.data.ctxPoints, (that.data.windowWidth * 4) / 6, 180); // 绘制信息2 canvasCtx.setFontSize(13); canvasCtx.setTextAlign('center'); canvasCtx.fillText('当前排名', that.data.windowWidth * 0.8 / 6, 200); canvasCtx.fillText('得分', that.data.windowWidth * 0.8 / 2, 200); canvasCtx.fillText('净胜分', (that.data.windowWidth * 4) / 6, 200); // 绘制分割线 canvasCtx.drawImage('../../img/line.png', 0, 240, that.data.windowWidth * 0.8, 15); // 比赛项目:羽神等你来战!丰厚礼品等着你 canvasCtx.setFontSize(12); canvasCtx.setTextAlign('center'); canvasCtx.fillText('比赛项目:羽神等你来战!丰厚礼品等着你', that.data.windowWidth * 0.8 / 2.1, 285); // 绘制二维码 canvasCtx.drawImage('../../img/code.jpg', (that.data.windowWidth * 0.8 / 2) - 50, that.data.windowHeight * 0.585, 100, 100); //绘制头像 canvasCtx.save(); canvasCtx.beginPath(); //开始绘制 canvasCtx.arc(that.data.windowWidth * 0.8 / 2, 58, 38, 0, 2 * Math.PI, false); canvasCtx.clip(); canvasCtx.drawImage(that.data.ctxUrl, that.data.windowWidth * 0.8 / 2 - 38, 20, 76, 76); canvasCtx.restore(); canvasCtx.draw(); wx.hideLoading(); }, 1000) }, // 保存绘制的图片 savePic: function () { var that = this; wx.canvasToTempFilePath({ x: 0, y: 0, width: that.data.windowWidth, height: that.data.windowHeight, destWidth: that.data.windowWidth, destHeight: that.data.windowHeight, canvasId: 'myCanvas', success: function (res) { if (!res.tempFilePath) { wx.showModal({ title: '提示', content: '图片绘制中,请稍后重试', showCancel: false }) } util.savePicToAlbum(that,res.tempFilePath); } }) }, // 关闭绘制 closeShare:function(){ this.setData({ share: true, share2: false }) }
2018-10-08 - 点击 button 延时 转发功能
在button上绑定 open-type="share",在触发onShareAppMessage()事件之前,想执行其它代码,,于是想setTimeout()一个定时器来延时加载 onShareAppMessage(); 如何能做到,或者有什么其它api吗?
2018-01-17 - 低功耗蓝牙开发
在做一个小程序的蓝牙开发,硬件是蓝牙智能锁,硬件生产商使用的是AES-128加密蓝牙数据交互协议, [图片] 小程序现在有专门的AES加密解密的API吗?
2017-10-11 - 获取连接设备的service服务,得到两个uuid
通过 wx.getBLEDeviceServices(); [图片] 日志打印出两个主服务uuid,分别为: 000018A0-0000-1000-8000-00805F9B34FB; 0000FEE7-0000-1000-8000-00805F9B34FB 可微信应该暴露的不是【FEE7】的主服务uuid吗? 那么问题是接下来要获取的特征值uuid 微信小程序应该以哪个主服务uuid作为 serviceId 呢? 有什么方法过滤主服务uuid吗?
2017-10-10