问题解决了吗?亲,我也碰到一样的问题
微信小程序ios无法播放视频,安卓可以,视频格式为mp4?视频路径为https://yhp.pg024.com/Upload/video/3974E3A4021644F9234C2B04F911D3C9.mp4 <template> <view> <video class="videoPart" :src="src" controls loop :show-fullscreen-btn="false" :id="`video_${src}`" ref="`video_${src}`" @timeupdate="timeupdate"> </video> </view> </template> <script> export default{ props:{ src:{ type:String, default:'' }, play:{ type:Boolean, default:false }, initialTime:{ type:Number, default:0 }, }, data(){ return{ time:0, duration:0, playFirst:true } }, mounted() { this.videoCtx = uni.createVideoContext(`video_${this.src}`,this) }, methods:{ timeupdate(event){ this.duration = event.detail.duration if(!this.play) return if(this.time>=this.duration) this.time=0 this.time = event.detail.currentTime }, videoPlay(){ if(this.play){ this.videoCtx.play(); if(this.playFirst){ this.videoCtx.seek(this.startTime) this.playFirst = false } }else{ this.videoCtx.pause(); this.$emit('pause',this.time) } }, }, watch:{ play(newVal,oldVal){ this.videoPlay() }, startTime:{ immediate: true, handler(newVal,oldVal){ this.time = newVal } }, }, computed:{ startTime(){ return this.initialTime } } } </script> <style scoped> .videoPart{width: 100%;height: auto;max-height: 100%;position: static;} </style>
2020-05-081.appid: wxea81eebe1ff13739 openid:oR2aX5KMCug4tIVDU5K-vgq3QXxQ 2.最新操作时间,20191214,17:25分 3.{"touser":"oR2aX5PZDmB4fU5zs5pqeyOb_VZc","template_id":"hc8fefSV-3VcONY2NSJUG5wLXkl9xLnznSc1-oh9vSY","data":{"character_string1":{"value":"1231323132"},"thing2":{"value":"\u5185\u5bb9"},"thing7":{"value":"\u5185\u5bb9"},"amount8":{"value":"\uffe550.00"},"thing5":{"value":"\u4e0b\u5355\u6210\u529f\uff0c\u8bf7\u7b49\u5f85\u5feb\u9012\u5458\u4e0a\u95e8\u670d\u52a1"}}}" 4.收到的消息 errCode=43101, errMsg=user refuse to accept the msg hint: [kgEdmA01130500] 5.必现
微信模板消息接口返回 errCode=43101 ?我上周五用我们的测试公众号做下模板消息压测,就给我自己的微信发了1w条消息,结果我们的微信模板消息接口就被限制了。消息通知里面也没有收到被限制的通知,所有微信模板消息全部发不出去,有什么方式可以解除限制么。没有客服么,打好几次客服电话了,就是解决不了问题,客服电话里面就没办法解决公众号的问题。
2019-12-16碰到同样的问题
小程序服务通知我们的微信小程序需要向客户和供货商发送服务通知, 但是用户允许通知之后, 仅只收到一次通知, 第二次就显示错误, 错误提示如下: Error Message: {"errcode":43101,"errmsg":"user refuse to accept the msg hint: [SuhVha09172277]"}
2019-12-12