- 小程序webView缓存如何处理?
小程序使用webView组件。访问url为 https://xxx.com/page?r=0.0907822272849359 携带随机数后,苹果手机真机查看依旧走的缓存页面。安卓手机却是可以的。请问下有什么好的处理方式吗?
2021-08-18 - 小程序直播组自定义参数custom_params 有问题?
[图片] 小程序直播组自定义参数custom_params添加了,但是分享出去,用户从分享卡片点进去,在点击直播组件页面里的货架商品跳转到商家小程序的商品详情页面时,Page onLoad options里的custom_params 确是空的,是有bug么? 跪求官方回复~~~~~~~~ [图片] [图片]
2020-03-10 - 小程序直播getLiveParams获取自定义参数逻辑是不是有点问题?
3. 【获取直播间相关参数及开发者自定义参数】接口接口说明:在直播组件版本 1.0.2 及以上版本通过该接口获取以下参数,开发者可以根据这些参数建立用户、直播间、商品之间的映射关系。 分享卡片进入直播间:分享者 share_openid + 进入者 openid + 房间号 room_id + 开发者自定义参数 customParams其他入口进入直播间:进入者 openid + 房间号 room_id + 开发者自定义参数 customParams调用方法:若要调用【获取自定义参数】接口 getLiveParams,需在小程序页面顶部引用【直播组件】 live-player-plugin。 示例代码如下: let livePlayer = requirePlugin('live-player-plugin') App({ onShow(options) { livePlayer.getLiveParams({ room_id: [直播房间id], scene: options.scene }) .then(res => { console.log('get share openid', res.share_openid) // 分享者openid,分享卡片进入场景才有 console.log('get openid', res.openid) // 用户openid console.log('get room id', res.room_id) // 房间号 console.log('get custom params', res.customParams) // 开发者在跳转进入直播间页面时,页面路径上携带的自定义参数,这里传回给开发者 }).catch(err => { console.log('get live params', err) }) } }) 问题:livePlayer.getLiveParams({ room_id: [直播房间id], scene: options.scene }) , 分享来到小程序。为什么要提供room_id: [直播房间id]参数? 如果有多个直播间,不知道哪个直播间?怎么提供呢? 同时返回的数据里又包含room_id 什么意思呢?
2020-03-09 - 小程序直播组件已经更新到1.0.2,如何携带 openid / room_id / 自定义参数?
[图片] 如图,开发文档对这一块还没有更新;想要问下如何携带自定义参数。
2020-03-09 - 小程序直播组件自定义参数相关?
分享直播间如何带自定义参数,以及如何获取到自定义参数,请问有具体方法吗,万分感谢
2020-02-27