出现同样问题+1
live-player直播在手机上正常,但是在PC端微信只有声音,没有画面(黑屏),是怎么回事儿?<live-player src="{{rtmp_play_url}}" mode="live" object-fit="fillCrop" autoplay="true" bindstatechange="statechange" binderror="error"></live-player>
2021-03-09我也遇到这个问题,怎么解决呀。。。。。
wx.previewImage?问题模块框架类型问题类型API/组件名称终端类型微信版本基础库版本API和组件小程序需求wx.previewImage - 需求的场景描述 在实时音视频界面调用wx.previewImage查看大图后实时音视频界面就会出现主播暂离的界面(ps:只有安卓手机会出现,苹果手机正常) -希望解决结果 在实时音视频界面调用wx.previewImage查看大图后实时音视频界面还是正常使用不暂停(ps:只有安卓手机!!!!!!)
2020-12-09+1,真的是太坑了。。。超出四个字符又没有看到警告或报错,modal就给你直接不出来
showModal 接口的 confirmText 长度限制太短了confirmText 和 cancelText 的四个字符对于中文来说还好,想用英文的话就太短了。 比如想显示 Retry 和 Cancel
2020-12-02代码片段 https://developers.weixin.qq.com/s/uaD6esml76lm
急!wx.createInnerAudioContext 创建2个实例,播放一个但是会把两个声音重叠// 创建第一个声音 this.audio1 = wx.createInnerAudioContext(); this.audio1.src = './audio/dialing.mp3' this.audio1.loop = true; this.audio1.volume = 1; // 创建第二个声音 this.audio2 = wx.createInnerAudioContext(); this.audio2.src = './audio/hangup.mp3' this.audio2.volume = 1; // 播放第一个声音 playAudio1() { this.audio1.play(); }, 生成两个不同的实例,点击播放第一个声音后,会同时播放两个重叠的声音
2020-10-29我这也遇到一样的问题,创建两个不同的音频实例 bg1和 bg2,bg1音频不是循环播放,bg2设置循环播放,然后播放bg2,结果在循环中每次两个都会同时播。。。
createInnerAudioContext同时存在多个播放错误?bgmp3() { this.innerAudioContext1 = uni.createInnerAudioContext(); this.innerAudioContext1.autoplay = true; this.innerAudioContext1.loop = true; this.innerAudioContext1.src = 'subpages/static/mp3/bg.mp3'; this.innerAudioContext1.onPlay(() => { if(!this.isPage()){ this.innerAudioContext1.stop() } }); this.innerAudioContext1.onError((res) => { }); }, gomp3() { const innerAudioContext2 = uni.createInnerAudioContext(); innerAudioContext2.autoplay = true; innerAudioContext2.loop = false; innerAudioContext2.src = 'subpages/static/mp3/go.mp3'; innerAudioContext2.onPlay(() => { }); innerAudioContext2.onError((res) => { }); innerAudioContext2.onEnded(() => { //innerAudioContext2.destroy() setTimeout(()=>{ this.beginmp3() },600) }); }, 第二个音频写的是播放一次。。但是每次进入 都会循环播放 然后把第一个音频的循环去掉就好了???
2020-10-29+1,楼主实现了吗?
微信小程序右滑动关闭关闭当前页面,如何禁止这个事件微信小程序向右滑动可以关闭当前页面,可是我不想让用户滑动关闭当前页面,该如何屏蔽这个动作?
2020-07-06