小程序
小游戏
企业微信
微信支付
扫描小程序码分享
开发过程中使用分享功能时,在Button上 设置一个
bindtap='shareButton' open-type="share"
这两个属性,现在我想在shareButton事件执行完成之后在调用系统分享页面,不知道有没有办法!
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
// 可以在成功回调里执行试试 // 提前把你要的数据提升到全局就不需要绑定额外事件 onShareAppMessage(e){ return wx.navigateTo({ url: `test?id=${this.id}`, success:(res)=>{ return { title: this.title, path: `/page/user?id=${this.id}` } } })
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
可以在 onShareAppMessage 里边判断是否来自按钮点击分享
onShareAppMessage(e){
if(e.from==='button'){
shareButton()
}
没有
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
// 可以在成功回调里执行试试 // 提前把你要的数据提升到全局就不需要绑定额外事件 onShareAppMessage(e){ return wx.navigateTo({ url: `test?id=${this.id}`, success:(res)=>{ return { title: this.title, path: `/page/user?id=${this.id}` } } })
可以在 onShareAppMessage 里边判断是否来自按钮点击分享
onShareAppMessage(e){
if(e.from==='button'){
shareButton()
}
}
应该是 this.data.seller 和 this.data.logo
https://developers.weixin.qq.com/s/lhxBGgmE7Qe6
没有