微信小程序苹果部分内容打不开(微信小程序audio组件在ios端无法播放的解决办法)
类别:编程学习 浏览量:1173
时间:2021-11-03 15:23:26 微信小程序苹果部分内容打不开
微信小程序audio组件在ios端无法播放的解决办法解决方法: 给 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…
总结
到此这篇关于微信小程序audio组件在ios端无法播放解决的文章就介绍到这了,更多相关小程序audio组件ios端播放内容请搜索开心学习网以前的文章或继续浏览下面的相关文章希望大家以后多多支持开心学习网!
您可能感兴趣
- python抽奖代码教程(python实现抽奖小程序)
- 宝塔小程序制作(宝塔面板微信小程序使用图文教程)
- 微信小程序的交通码(微信小程序中实现车牌输入功能)
- 微信小程序实现自动定位(微信小程序实现锚点定位功能的方法实例)
- 微信小程序开发模式(微信小程序引入Vant框架的全过程记录)
- 小程序详细步骤使用方法(小程序的基本使用知识点非常全面,推荐!)
- python编写的小程序(几个适合python初学者的简单小程序,看完受益匪浅!推荐)
- canvas小程序海报(使用canvas生成含有微信头像的邀请海报没有微信头像问题)
- 小程序canvas不显示(小程序canvas中文字设置居中锚点)
- css浮动小例子教程(使用css transition属性实现一个带动画显隐的微信小程序部件)
- 小程序开发计算方法(小程序实现简单的计算器)
- python小程序编程代码(python实现烟花小程序)
- flask项目微信小程序(Python Flask 搭建微信小程序后台详解)
- 微信小程序签名怎么操作(微信小程序实现简单手写签名组件的方法实例)
- 微信小程序scrollview 截图(微信小程序scroll-view不能左右滑动问题的解决方法)
- 微信小程序存token(小程序开发实现access_token统一管理)
- 有种尴尬叫朋友圈忘屏蔽,大学生上演社死现场,父母亲自下场吐槽(有种尴尬叫朋友圈忘屏蔽)
- 朋友圈屏蔽你的人,可以直接看淡了(朋友圈屏蔽你的人)
- 金球奖只青睐那些会戴珠宝的女人(金球奖只青睐那些会戴珠宝的女人)
- 浙江省一个县,人口超40万,建县历史超1100年(浙江省一个县人口超40万)
- 五代十国南唐历代国君(五代十国南唐历代国君)
- 飞机引进工程师杨隆 匠人匠心,只争朝夕(飞机引进工程师杨隆)
热门推荐
- nginx日志配置详细教程(Nginx访问日志及错误日志参数说明)
- tomcat架构结构图(Tomcat核心组件及应用架构详解)
- django请求流程(Django学习笔记之为Model添加Action)
- 关于mysql性能优化的描述(Mysql性能优化之索引下推)
- css安全模式(仅针对IE8有效的CSS Hack猎奇写法)
- docker怎么设置redis(docker安装redis并以配置文件方式启动详解)
- sqlserver 高级查询(SQL Server2019数据库之简单子查询的具有方法)
- JS函数前面感叹号的作用
- DIV+CSS网页布局时常犯的几个错误
- jsp实现短信验证码(手动实现js短信验证码输入框)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9