问题模块 框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
API和组件 微信小程序 Bug onShareAppMessage 客户端 6.7.2 2.3.0
onShareAppMessage: function () {
const id = this.data.id;
return {
...this.data.shareData,
success: res => {
// 转发成功
wx.showLoading({
title: "复活中...",
mask: true
});
service({
...Share,
data: {
id: id
}
})
.then(resp => {
wx.hideLoading();
wx.redirectTo({
url: "../index?id=" + id
});
})
.catch(error => {
wx.hideLoading();
wx.showToast({
title: "复活失败",
icon: "none"
});
});
},
fail: res => {
// 转发失败
wx.showToast({
title: "复活失败",
icon: "none"
});
}
};
}
如题,代码如上,为什么我开发环境可以工作,但是发布以后就不能工作了
微信小程序开发问题解答
微信小程序开发者回答:
分享不支持回调:https://developers.weixin.qq.com/community/develop/doc/0000447a5b431807af57249a551408?highLine=%25E5%2588%2586%25E4%25BA%25AB
本文网址:http://www.91bianli.com/kaifazhinan/76728.html