本次分享为页面内button分享,在需要分享的页面js中写入一下代码,path非当前页面并携带参数,具体代码如下,问题:点击分享后返回该列表页面,发现任何按钮都不可点击……,要命啊,返回首页后自己写的所有btn都不可点击,刷新才可以
/** 页面分享 */
onShareAppMessage(e){
let dutyId = e.target.dataset.id;
console.debug("share id===",dutyId);
let userId = getUserId();
return{
path: '/pages/schedule/schedule-detail/schedule-detail?shareId='+userId+'&dutyId='+dutyId,
}
}
你好,先参考下文档进行自查下:
https://developers.weixin.qq.com/miniprogram/dev/reference/api/Page.html#onShareAppMessage-Object-object
能提供一个复现的代码片段吗
https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html