mp3语音无法播放

发布于 7 年前作者 pqian13665 次浏览最后编辑 7 年前来自 ask

主要代码:

innerAudioContext.obeyMuteSwitch=false;

innerAudioContext.src = https://file.hlingsoft.com/82093f1f79703dbd31a1.mp3

innerAudioContext.autoplay = true

开发工具上可以播放,真机不行

2 回复
wangming
wangming1 楼6 年前

你好,麻烦提供一下出现问题的机型和微信版本,并且给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),我们定位下问题

yaoli
yaoli2 楼5 年前

wx.downloadFile({

url: url,

success: function (res) {

wx.hideLoading()

if (res.statusCode === 200) {

innerAudioContext.src=res.tempFilePath;

}

}

})

下载下来播放也不行