遇到相同的问题了,请问你解决了吗?
form表单提交获取不到数据- 当前 Bug 的表现 [图片] [图片] [图片] [图片] - 预期表现 截图中可见iPhone XR上是有填写手机号的(问题只有在iPhone XR上出现) form表单提交时却没有手机号数据,其他大部分数据正常,多次提交的时候不一定那一项取不到
2018-12-24请问一下windowHeight是不是除去了状态栏和tab栏的高度吗?
iOS windowHeight 和 screenHeight 一样tabBar 页面 onLoad 调用 wx.getSystemInfoSync() iOS 手机和iPad windowHeight 和 screenHeight 一样 开发工具和安卓正常 [图片]
2018-12-11朋友你的问题解决了吗?我也遇到了类似的问题,缓存下来的tempFilePath的文件后缀是mpeg
音频文件如何缓存到本地,缓存下来的文件格式不是原格式文件,header不起作用wx.saveFile方法缓存音频文件,文件虽然缓存下来了,但是缓存下来的文件格式发生了变化,原音频文件为MP3为后缀,可是缓存下来的文件是html为后缀,无法播放,设置完header也不起作用,还请大神帮忙看一下,附上代码 downloadFromServer: function () { var _this = this; const downloadTask = wx.downloadFile({ url: app.globalData.InterfaceUrl + '/media/mp3/one_one.mp3', header: { "Content-Type": "audio/mp3", }, success: function (res) { wx.saveFile({//对临时资源进行永久保存 tempFilePath: res.tempFilePath,//tempFilePath想要保存的文件的临时地址 success: function (res) { console.log("保存成功啦") console.log(res)//res是保存成功的返回值,包含存储路径等 console.log(res.errMsg)//res是保存成功的返回值,包含存储路径等 if (res.errMsg =="saveFile:ok"){ _this.setData({ hidden:false, downloadSrc: "../../images/on_download.png", }) } } }) } }) downloadTask.onProgressUpdate((res) => { console.log('下载进度', res.progress) this.setData({ downloadPercent: (res.progress * 100).toFixed(2)//toFixed(2)取小数点后两位,更新wxml中progress组件的进度值 }) }) //downloadTask.abort() // 取消下载任务 },
2018-09-17你的问题解决了吗?我用 FileSystemManager.saveFile会报错,提示的是FileSystemManager is not defined
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-09-17