问题模块 框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
API和组件 微信小程序 Bug createInnerAudioContext 客户端 6.7.3 2.0
- 已经设置obeyMuteSwitch = false,
但还是没有声音
- 预期表现: 希望有声音
- 复现路径: 创建音频, 设置相关属性
- 提供一个最简复现 Demo
代码片段
const innerAudioContext = wepy.createInnerAudioContext(); innerAudioContext.__ID = this.detailInfo.id; // 用于对比两个实例是否相同 // innerAudioContext.src = decodeURIComponent(this.detailInfo.audioFile); // innerAudioContext.src = 'https://m10.music.126.net/20181018204652/3782d451c200276fd932a68af62999e0/ymusic/9f4d/e162/930c/182ba376465b63cd2a95796966fe665f.mp3'; if (t) { innerAudioContext.startTime = t; } const res = await wepy.downloadFile({ url: decodeURIComponent(this.detailInfo.audioFile) }); innerAudioContext.src = res.tempFilePath; innerAudioContext.autoplay = true; innerAudioContext.obeyMuteSwitch = false; this.innerAudioContext = innerAudioContext;
微信小程序开发问题解答
微信小程序开发者回答:
这个已经更新了:https://developers.weixin.qq.com/miniprogram/dev/framework/release.html
本文网址:http://www.91bianli.com/kaifazhinan/76257.html