通过小程序直播获取分享卡片链接参数能跳转到指定页面吗?
获取分享卡片链接参数
let livePlayer = requirePlugin('live-player-plugin')
App({
onShow(options) {
// 分享卡片入口场景才调用getShareParams接口获取以下参数
if (options.scene == 1007 || options.scene == 1008 || options.scene == 1044 || pluginScene === 1154 || pluginScene === 1155) {
livePlayer.getShareParams()
.then(res => {
// 房间号
console.log('get room id', res.room_id)
// 用户openid
console.log('get openid', res.openid)
// 分享者openid,分享卡片进入场景才有
console.log('get share openid', res.share_openid)
// 开发者在跳转进入直播间页面时,页面路径上携带的自定义参数,这里传回给开发者
console.log('get custom params', res.custom_params)
}).catch(err => {
console.log('get share params', err)
})
}
}
})
n能通过获取参数加上自己的判断跳转到指定的页面吗?测试的时候是只能做弹出提示 但是跳转不了?