- live-player 播放.flv视频音视频不同步? 视频走的特别快 视频中的声音是正常的
<live-player v-show="playerShow" id="player" :src="jcUrl" mode="live" style="width: 300px; height: 225px;margin: 0 auto;"> <cover-view style="border: 1rpx solid red; margin-top: 200rpx;"> <button type="default" @click="closeVideo">关闭</button> </cover-view> </live-player>
2023-01-09 - 使用直播插件?
let customParams = { path: 'pages/index/index', pid: 1 } // 开发者在直播间页面路径上携带自定义参数(如示例中的path和pid参数),后续可以在分享卡片链接和跳转至商详页时获取,详见【获取自定义参数】、【直播间到商详页面携带参数】章节 wx.navigateTo({ url: `plugin-private://wx2b03c6e691cd7370/pages/live-player-plugin?room_id=${roomId}&custom_params=${encodeURIComponent(JSON.stringify(customParams))}` }) 这个customParams 中的 path路径是什么? 是直播列表的页面吗? 还是什么页面?
2021-09-18 - JSSKD问题 VUE中使用jssdk进行分享功能失效?
提示 updateAppMessageShareData:ok // 获取wxSDK配置 WeChatSDK(){ // 获取当前域名 console.log(window.location.href.split("#")[0]); this.$api.WeChatJsSDK({ url: window.location.href.split("#")[0] }) .then(res => { console.log(res); console.log(res.data.jsApiList[3]); wx.config({ debug:true, appId:res.data.appId, timestamp:res.data.timestamp, nonceStr:res.data.nonceStr, signature:res.data.signature, jsApiList:[ // "updateAppMessageShareData", res.data.jsApiList[3] ], // 必填,需要使用的JS接口列表 }); wx.ready(function(){ wx.updateAppMessageShareData({ title: this.fenxianga_toubu, // 分享标题 desc: this.fenxianga_desc, // 分享描述 link: this.fenxianga_link, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致 imgUrl: this.fenxianga_imgUrl, // 分享图标 success: function (){ console.log("成功"); } }) }); }) .catch(err => { console.log(err); }) }, [图片]
2021-07-20