ios微信7.0.5大bug,急。文件下载和音频播放
ios系统,昨天更新的微信ios 7.0.5 ,带search的url,使用wx.downloadFile下载后, res.tempFilePath 也带上了search,InnerAudioContext.play()播放报错。 var that = this;let src = 'http://fdfs.xmcdn.com/group55/M0A/DF/94/wKgLdVyYhamwaAREAAjQ8RhAz0s434.m4a?a=1';wx.downloadFile({ url: src, success: function (res) { let innerAudioContext = wx.createInnerAudioContext(); innerAudioContext.src = res.tempFilePath; console.log(res.tempFilePath);//wxfile://tmp_852f4db0e728c9133951323464ae379c.m4a?a=1 innerAudioContext.play(); innerAudioContext.onError(e=>{ console.log(e); // errCode:10001 //errMsg:"INNERERRCODE:-11828, ERRMSG:打不开" }) }}) 在调试器和安卓系统中是好的。 微信7.0.5。 在ios的微信7.0.5中播放失败。 把res.tempFilePath中的url中search部分去掉,依然无法播放。 官方大大,求验证,求解决,非常急!感谢!