//显示分享面板
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能正常收到回调,我该怎么直接打开好友列表。
我也是遇到这种情况,求官方解答@微信@社区技术运营专员-Jahozheng
位置内部的,调整不了啊
这个应该是新版本的分享,以后说不定都是这种的了
我尝试了好多手机,都是直接打开好友列表的,部分机型是打开这个界面,怎么调整啊?
按说这个弹窗是微信内置的呀,咱们也没法修改