微信客服聊天界面内的卡片气泡,点击跳转到小程序,页面为空白
https://developers.weixin.qq.com/miniprogram/dev/api/open-api/service-chat/wx.openCustomerServiceChat.html wx.openCustomerServiceChat({
corpId: 'xxx'
extInfo: {
url: 'https://work.weixin.qq.com/xxx'
},
showMessageCard: true,
sendMessageTitle: 'test titile',
sendMessagePath: '/pages/routeA/routeA', // 或者尝试使用‘pages/routeA/routeA’
})
需求背景:小程序支持进入客服聊天界面,且支持发送卡片,卡片链接到一个该小程序存在的页面。故如上诉代码,指定了sendMessagePath为目标页面路由。 结果:小程序可以进入客服聊天且可发送卡片,但点击该卡片后进入页面为空白页。 PS: 若不指定sendMessagePath则可以正常打开小程序首页