微信小程序audio组件在ios端无法播放的解决办法
作者:🍬Black Eyed Peas🍥 时间:2024-04-18 09:47:26
解决方法: 给 audio 组件绑定点击事件,手动触发播放暂停方法!
代码片段:
wxml文件
<!-- 判断是语音通话,有通话记录,通话描述不包含'未接' -->
<view class="reference"
wx:if="{{itemList.activity_type === 'phone' && itemList.activity_reference_id && tool.indexOf(itemList.comment,'未接') === -1 }}">
<!-- 语音播放 -->
<van-button class="ref-btn" wx:if="{{audioResourceMaps[itemList.activity_reference_id] === undefined}}"
loading="{{itemList.activity_reference_id === currentGettingReferenceId}}" icon="play" type="info" plain
data-reference-id="{{itemList.activity_reference_id}}" bindtap="getReference">
</van-button>
<view wx:else class="audio-box">
<!-- 语音播放暂停 -->
<van-button class="ref-btn" wx:if="{{audioResourceMaps[itemList.activity_reference_id]}}"
data-reference-id="{{itemList.activity_reference_id}}"
icon="pause" type="info" plain bindtap="pauseAudio"/>
<!-- 点击没有通话录音 -->
<span wx:else class="no-audio-text">未找到通话录音</span>
</view>
</view>
wxss文件
.reference {
margin-top: 20rpx;
height: 100%;
padding: 5rpx;
box-sizing: border-box;
}
.ref-btn {
width: 80rpx;
height: 80rpx;
display: flex;
}
.ref-btn button {
width: 80rpx;
height: 80rpx;
border-radius: 50%;
}
js文件
/**
* 组件的初始数据
*/
data: {
currentGettingReferenceId: null, //正在播放的音频id
audioResourceMaps: {}, //点击过的音频列表
isPause:false, // 是否暂停
},
/**
* 组件的生命周期
*/
lifetimes: {
attached: function () {
// 因为是子组件 所以要在这里获取实例
this.audioContext = wx.createInnerAudioContext();
},
detached: function () {
// 停止播放
this.stopAudio()
// 在组件实例被从页面节点树移除时执行
},
},
methods: {
// 获取录音
getReference(e) {
let id = e.target.dataset.referenceId
if(id != this.data.currentGettingReferenceId){
this.stopAudio()
}
this.setData({
currentGettingReferenceId:id
})
// 点击获取录音url的接口。 接口请求根据自己的封装来写
WXAPI.getResourceUrl(
`/conversation/conversationsession/${id}/`, {
data_type: 'all',
}).then(({resource_url}) => {
console.log('音频地址====',resource_url,)
let url = resource_url && resource_url.indexOf('https://') > -1? encodeURI(resource_url) : null
this.data.audioResourceMaps[id] = url;
if(resource_url) this.playAudio(id,url)
this.setData({
audioResourceMaps: this.data.audioResourceMaps
})
console.log('播放过的列表=====',this.data.audioResourceMaps)
}).catch(function (e) {
console.log(e)
})
},
// 暂停
pauseAudio(){
this.setData({
isPause: !this.data.isPause
})
let id = this.data.currentGettingReferenceId
console.log(id,'播放暂停的id')
const innerAudioContext = this.audioContext
if(this.data.isPause){
innerAudioContext.pause()
console.log('暂停播放')
}else{
innerAudioContext.play()
console.log('继续播放')
}
},
// 停止播放
stopAudio(){
const innerAudioContext = this.audioContext
innerAudioContext.stop()
let obj = this.data.audioResourceMaps
for(let item in obj){
delete obj[item]
}
// 停止播放就要把播放列表id对应的音频地址做清空处理
this.setData({
audioResourceMaps: obj,
currentGettingReferenceId:null
})
console.log('停止播放')
},
// 播放
playAudio(id,url) {
const innerAudioContext = this.audioContext
console.log(url, '音频的地址')
if(url){
innerAudioContext.src = url
innerAudioContext.play()
innerAudioContext.onPlay(() => {
console.log('开始播放')
})
innerAudioContext.onTimeUpdate(() => {
console.log(innerAudioContext.duration,'总时长')
console.log(innerAudioContext.currentTime,'当前播放进度')
})
setTimeout(() => {
console.log(innerAudioContext.duration,'总时长')
console.log(innerAudioContext.currentTime,'当前播放进度')
}, 500)
innerAudioContext.onEnded(() => {
let obj = this.data.audioResourceMaps
for(let item in obj){
delete obj[item]
}
this.setData({
audioResourceMaps: obj,
currentGettingReferenceId:null
})
console.log('播放完毕')
})
innerAudioContext.onError((res) => {
console.log(res.errMsg)
console.log(res.errCode)
})
}
}
效果图
⚠️微信小程序中使用vant,必须要在.json 文件中引用 不然标签不会显示哦
我是在app.json文件引得 全局可用
"usingComponents": {
"van-button": "@vant/weapp/button/index",
"van-icon": "@vant/weapp/icon/index",
}
官网文档:developers.weixin.qq.com/miniprogram…
来源:https://juejin.cn/post/6979873540526833701
标签:小程序,audio,组件
0
投稿
猜你喜欢
Python脚本处理空格的方法
2021-03-12 09:45:33
Vue+Java+Base64实现条码解析的示例
2024-05-02 17:08:27
用python自动生成日历
2022-08-28 14:28:58
js显示世界时间示例(包括世界各大城市)
2024-04-10 13:54:37
python生成器的使用方法
2021-12-03 22:40:49
PHP入门基础之注释的写法
2023-10-20 07:26:17
倾斜的鼠标翻转导航制作上的烦恼
2007-06-20 16:39:00
js中函数声明与函数表达式
2024-04-25 13:08:35
基于JavaScript 实现拖放功能
2024-04-22 22:29:20
javascript实现多栏闭合展开式广告位菜单效果实例
2024-04-29 14:07:44
Python实现学生信息管理系统的示例代码
2022-12-06 22:17:56
遗传算法之Python实现代码
2021-06-14 15:15:07
php实现mysql备份恢复分卷处理的方法
2023-11-16 20:55:33
SQL Server与Oracle、DB2的优劣对比
2009-01-07 14:16:00
Python实现CNN的多通道输入实例
2021-10-10 11:33:07
python 统计一个列表当中的每一个元素出现了多少次的方法
2021-09-21 13:48:32
Python时间序列处理之ARIMA模型的使用讲解
2021-04-10 05:53:34
python爬虫爬取指定内容的解决方法
2022-11-07 11:32:12
将Python脚本打包成MACOSAPP程序过程
2022-03-07 14:20:43
Python减少循环层次和缩进的技巧分析
2023-10-07 21:41:09