遇到了同样的问题
安卓手机已经开了保存相册图片权限但saveImageToPhotosAlbum依然走的是fai?安卓手机已经开了保存相册图片权限,调用wx.saveImageToPhotosAlbum依然走的是fail。然后调用wx.openSetting打开授权设置页面显示为已开启状态,已经多种方式操作授权了,但用户依然保存不了图片,这个是什么原因呢 [图片][图片]
2020-05-08极其差!!!!!! MAC版本不记得有这个问题,怎么windows版本这么差
开发者工具选中一个文件时,目录树展开和收起时会乱跳点击目录树中的一个文件,然后展开或者收起目录树中的某个目录,目录树会自动跳到选中文件的位置,体验极差
2019-09-20机型:苹果6p 微信版本:7.0.5 设置了最多 10 分钟,实际录制 9 分多钟手动停止,实际录音文件显示只有 5 分钟
recorderManager 最多只能录5分钟?[图片] 代码如上,每次超过 5 分钟,只能有 5 分钟,模拟器正常,录到10分钟会自动停止。 用了四部真机测试,录制到 9 分多钟会手动停止,都是只能显示 5 分钟。 录音的前一个页面是video组件在播放视频,点击视频下面的发送语音按钮,到新页面录制。 // 开始录制 start: function (e) { const that = this; console.log(e); that.setData({ JGH_recording1: false }) recorderManager.onStart(() => { that.isrecordering = true; }) recorderManager.onStop(function (res) { let _new_count = formatTime(res.duration / 1000); let audioData = {}; audioData.audio_url = res.tempFilePath; audioData.duration = res.duration; audioData.playstate = 'pause'; audioData.new_duration = _new_count; that.subaudio(res.tempFilePath, res.duration, audioData); }); const options = { duration: 600000, sampleRate: 44100, numberOfChannels: 1, encodeBitRate: 192000, format: 'mp3', frameSize: 50 }; recorderManager.start(options); //时间统计 var totalSecond = 0; interval = setInterval(function () { // 秒数 var second = totalSecond; // 分钟位 var min = Math.floor((second) / 60); var minStr = min.toString(); if (minStr.length == 1) minStr = '0' + minStr; // 秒位 var sec = second - min * 60; var secStr = sec.toString(); if (secStr.length == 1) secStr = '0' + secStr; that.setData({ totalSecond: totalSecond, countDownMinute: minStr, countDownSecond: secStr }); totalSecond++; if (totalSecond < 0) { clearInterval(interval); //设置结束 that.setData({ totalSecond: totalSecond, countDownMinute: '00', countDownSecond: '00' }); } }.bind(this), 1000); }, // 停止录音 stop: function (e) { const that = this; recorderManager.stop(); clearInterval(interval); that.isrecordering = false; that.setData({ state: 'stop', countDownMinute: '00', countDownSecond: '00' }) that.setData({ JGH_recording1: true }) },
2019-08-02没解决办法,只能用 scroll-top ,没招 希望有别的解决方法的兄弟能支援下
scroll-into-view指定自定义组件内的id无效外层是scroll-view,指定scroll-into-view为组件内的view,setData 后无效。 [图片]
2018-10-22