我需要在触发分享是判断一下分享的内容,求解wx.getUserInfo 参数withCredentials:false,微信小程序开发教程。在item.type !== 1的时候不要分享,但是现在没有办法关闭分享的效果,怎么办呢
onShareAppMessage: function (e) {
var item = e.target.dataset.item;
if (item.type === 1) {
return {
title: item.nodeName,
path: '/disk/index',
imageUrl: '/disk//share.png',
success: function (res) {
console.log("转发成功")
},
fail: function (res) {
console.log("转发失败")
}, complete: function () {
console.log("转发结束")
}
}
} else {
wx.showModal({
title: '提示',
content: '页面不能分享哟',
});
}
}
本文来自微信小程序开发者论坛 微信小程序工厂 http://www.xcxgc.com 转载请保留。
微信小程序开发者回答:
小***:
既然不能分享,为什么还要给他点击?
本文网址:http://www.91bianli.com/kaifazhinan/59326.html