- canvasToTempFilePath:fail是怎么回事?
尝试生成海报提示 "canvasToTempFilePath:fail executeCanvasMethod failed: Failed to execute 'drawImage' on 'CanvasRenderingContext2D': The image argument is a canvas element with a width or height of 0." context.draw(false, setTimeout(function(){ wx.canvasToTempFilePath({ x: 0, y: 0, width: 2480, height: 3366, destWidth: 2480, destHeight: 3366, canvasId: 'share', fileType: 'jpg', success: function(res) { that.setData({ shareImgPath: res.tempFilePath }) if (!res.tempFilePath) { wx.showModal({ title: '提示', content: '图片绘制中,请稍后重试', showCancel: false }) } //画板路径保存成功后,调用方法吧图片保存到用户相册 wx.saveImageToPhotosAlbum({ filePath: res.tempFilePath, //保存成功失败之后,都要隐藏画板,否则影响界面显示。 success: (res) => { // console.log(res) wx.hideLoading() that.setData({ canvasHidden: true }) wx.showModal({ title: '保存成功', content: '已保存到相册,快去分享吧~', showCancel: false }) }, fail: (err) => { console.log(err) wx.hideLoading() that.setData({ canvasHidden: true }) } }) }, fail: (err) => { console.log(err) } }) },300));
11-04 - subscribeMessage "errCode":-501001为什么?
云函数执行定时任务,推送消息。最开始都可以正常执行,执行到后来就全部都报这个错,怎么回事? {"errCode":-501001,"errMsg":"openapi.subscribeMessage.send:fail -501001 resource system error. connect EMFILE 169.254.0.131:80 - Local (undefined:undefined)"}
2023-05-08 - PC端 背景音频getBackgroundAudioManage设置 playbackRate无效?
安卓和ios端playbackRate都正常,但pc端无效
2022-10-11 - PC端 音频getBackgroundAudioManager设置startTime无效?
在开发工具、移动端,使用一切正常 但在PC上更换语音播放时,继续上一条语音的秒数开始播放,无法从00:00开始
2022-10-10 - rich-text中怎么设置img的高度宽度?
想用rich-text,但是设置了img的高度宽度,却不能按style中的宽度高度展示 比如以下img,应该如何处理? <img src=\"https://******/1.png\" style=\"width:261rpx;height:155rpx;vertical-align:middle;margin-bottom:2rpx\" />
2021-11-10 - 背景音errcode:10003,playerErrCode:7,安卓正常,苹果无法播放,怎么回事?
今天突然很多苹果用户反馈无法播放语音 语音播放使用的getBackgroundAudioManager [图片] ipad pro 2020 、iphone8 plus 、iPhone11(系统版本15.0.2) 苹果7p,软件型号是14.4.1,微信版本是8.0.15等等
2021-11-03 - 发布后多久能更新?
小程序发布后,多久才能覆盖原先的版本?我的小程序发布半个多小时了,展示还是昨天的版本。。。
2017-10-24 - 如何将矩阵展示出来?
我需要做一个数学题目的功能,请问如何才能将矩阵展示出来?
2017-06-05