- FileSystemManager.saveFile无法保存canvas截图
canvas.toTempFilePath({ x: 0, y: 0, width: canvas.width, height: canvas.height, destWidth: canvas.width, destHeight: canvas.height, success (res) { console.log(res); //不能用 :"saveFile:fail tempFilePath file not exist" const fs = wx.getFileSystemManager(); fs.saveFile({ tempFilePath: res.tempFilePath, // 传入一个本地临时文件路径 success(res) { console.log(res.savedFilePath) // res.savedFilePath 为一个本地缓存文件路径 }, fail(res){ console.log(res); } }) } }) toTempFilePath的res: {errMsg: "canvasToTempFilePath:ok", tempFilePath: "ffd3e413-c811-4efc-a9a3-9d078ce358fa"} saveFile的fail打印的res: {errMsg: "saveFile:fail tempFilePath file not exist"} saveFile保存临时截图失败,但是可以使用saveImageToPhotosAlbum保存到相册。 不知道为何,求解啊~ 微信开发者工具版本:v1.02.1804120
2018-06-05 - 保存图片到系统相册,用开发工具可以保存成功,但是手机运行保存失败
保存画布canvas生成的图片到系统相册,用开发工具可以保存成功到电脑上,但是手机运行保存失败 用这个方法wx.canvasToTempFilePath生成的临时路径地址 开发工具获取到的临时路径是完整的: http://tmp/wxc4aab796a1d69b6f.o6zAJs6Mps91LY7pUkH7W0JtOtBw.wnt8SCLS0xvI0d0f6b741a4d836a9fe0d4449ca5bb13.png 但是手机运行的话获取的是这样的: wxfile://tmp_0d93d3fded74843bbf6217a7c4b30020.png 所以保存的时候提示:"downloadFile:fail url scheme is invalid" 有知道或者遇到过类似问题的同学吗,帮忙解答一下吧 万分谢谢
2018-11-03 - 请问一下开放数据域怎么获得自己的openid
现在在开放数据域用 wx.getUserInfo获取用户数据,头像昵称都没有问题,就是openid = "selfOpenId",不是真实的openid类似"ownAP0b9qt6AzvYOSWOX8VX8KMq0"的ID,请问一下怎么才能获得
2018-05-18 - 小游戏在开放域怎么获取自己的openid
怎么获取自己的openid,或者怎么确定获取到的好友数据中哪个是自己的数据
2018-05-09