请问解决了么?我的也是这样啊,我的都估计有4、5天了,还是这样,[图片] 页面展示现在不显示任何内容了,想调试其他东西也不行[图片] 请问这个到底要怎么审核的?给个提示也好啊,具体要什么审核,有些什么流程?或者有些什么要求?
待插件开发者确认申请,通过后将可使用此插件?直播插件,前端报插件申请成功,待审核确认,待插件开发者确认申请,通过后将可使用此插件,好几天了
2021-10-13[图片]
开发者工具提示 插件申请成功 待审核确认 是怎么回事?我开通了小程序直播功能,在代码中添加了直播组件的主包后就提示“插件申请成功,待审核确认”
2021-10-11我的也是,通过了么?
console.error("插件申请成功,待审核确认")这个要等多久啊?console.error("插件申请成功,待审核确认")这个要审核吗等多久好烦
2021-10-08联系什么插件开发商?我的是添加了小程序的直播功能,按照开发文档,添加了代码后,开发工具提示插件申请成功,等待审核通过,然后就其他页面也直接不能调试了,这审核要多久?
插件申请成功,待审核确认?开发者工具报 “插件申请成功,待审核确认” 怎么才能审核通过啊
2021-10-08js代码: Page({ data: { video:[], changeindex:0, videoindex:[0,1] }, onLoad: function() { var that = this; //读取数据库 wx.request({ url: 'https://***/video.php', method: 'GET', data: { cpid: 1 }, header: { 'content-Type': 'application/json' }, success(res) { that.setData({ video: res.data, }); } }) }, slide(e){ var preindex=[]; if(e.detail.current==0){ preindex=[0,1]; }else if(e.detail.current==this.data.video.length-1){ preindex=[e.detail.current-1,e.detail.current]; }else{ preindex=[e.detail.current-1,e.detail.current,e.detail.current+1]; } let videoid='video'+(this.data.changeindex+1); console.log(videoid); let videoContext=wx.createVideoContext(videoid,this); videoContext.seek(0); videoContext.stop(); videoContext.pause(); videoid='video'+(e.detail.current+1); console.log(videoid); videoContext=wx.createVideoContext(videoid,this); videoContext.play(); this.setData({ changeindex:e.detail.current, videoindex:preindex }) }, WXML代码: <view class="video"> <swiper class="swivideo" vertical="{{true}}" bindchange="slide"> <swiper-item wx:for="{{video}}" class="" wx:key="index"> <video id="{{item.videoplayid}}" wx:if="{{toolStr.indexOf(videoindex, index) > -1 ? true : false}}" src="{{item.videosrc}}" controls="{{false}}" loop="{{true}}" show-fullscreen-btn="{{false}}" show-play-btn="{{false}}" show-center-play-btn="{{false}}" autoplay="{{index==changeindex}}"></video> </swiper-item> </swiper> </view>
videoContext.stop();真机测试安卓手机无效https://developers.weixin.qq.com/miniprogram/dev/api/media/video/VideoContext.play.html videoContext.seek(0); videoContext.pause(); videoContext.stop(); 真机测试安卓手机无效
2021-06-06