shareAppMessage 没有拉起好友列表。
[图片] //显示分享面板
showShare(call: Function) {
if (!WECHAT) {
call(true);
return
}
let isSharing = false
this.wx.onShow(res => {
if (isSharing) {
isSharing = false
call(true);
console.log("分享页面关闭", res)
}
})
if (WECHAT) {
const randomIndex = Math.floor(Math.random() * 2);
isSharing = true
this.wx.shareAppMessage({
title: GameSettings.sharesInfo[randomIndex].shareTtitle,
imageUrlId: GameSettings.sharesInfo[randomIndex].shareId, // 图片 id
imageUrl: GameSettings.sharesInfo[randomIndex].shareLink, // 图片 URL
query: "userid=" + App.User.GameUserInfo.baseinfo.userid
})
}
}
我的分享界面为什么是这样的,不是直接打开好友列表,我是通过onShow来判断分享页面是否关闭,如果直接点击头像分享onShow没有任何信息,打开好友列表之后点击分享,onShow能正常收到回调,我该怎么直接打开好友列表。