请问一下:IOS播放mp3时候不会响,安卓正常,在电脑上连着手机运行时候也正常,打包需要配置什么信息吗?
代码如下:
const innerAudioContext = uni.createInnerAudioContext();
innerAudioContext.autoplay = true;
innerAudioContext.loop = true;
innerAudioContext.src = 'http://www.xx.com/wave.mp3'; (路径没问题)
innerAudioContext.onPlay(() => {
console.log('开始播放');
});
innerAudioContext.onError((res) => {
console.log(res.errMsg);
console.log(res.errCode);
});
DaGuangHe
- 发布:2019-02-15 15:51
- 更新:2019-08-07 15:38
- 阅读:1904
innerAudioContext IOS不响
分类:uni-app
撸码客 - 无
我是因为打开了静音键导致没声音,不知道你是不是这种情况
话说obeyMuteSwitch属性在ios的微信小程序里不管用啊
autoplay属性在ios的微信小程序里也不管用
安卓及其他平台没测
L***@163.com
const改成let声明,但是我这边现在是ios端获取不了音频时长问题,你们有解决方案吗?
2019-05-19 20:00
5***@qq.com
回复 L***@163.com: 你好,ios端获取不了音频时长问题这个问题怎么解决的呢,我现在也是这个问题
2019-08-19 14:10