当前位置:   article > 正文

onShareAppMessage 微信小程序

onshareappmessage

onShareAppMessage(Object object)

监听用户点击页面内转发按钮(button 组件 open-type=“share”)或右上角菜单“转发”按钮的行为,并自定义转发内容。
注意:只有定义了此事件处理函数,右上角菜单才会显示“转发”按钮
在这里插入图片描述
在这里插入图片描述

Page({
  onShareAppMessage() {
    const promise = new Promise(resolve => {
      setTimeout(() => {
        resolve({
          title: '自定义转发标题'
        })
      }, 2000)
    })
    return {
      title: '自定义转发标题',
      path: '/page/user?id=123',
      promise 
    }
  }
})
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
onShareAppMessage(res){
			var that = this
			console.log(that.goods_data)
			if(res.from==='button'){//分享按钮
				return {
					title:that.goods_data.share_title||that.goods_data.goods_name,
					// path: '',
					imageUrl:that.goods_data.share_img||that.goods_data.main_img,
					success: function (res) {
					  
					  if(res.errMsg == 'shareAppMessage:ok'){
						console.log("成功",res)
					  }
					},
					fail:function(res){
					  
					  console.log("失败",res)
					  
					}
				}
			}else{
				return {
					title:that.goods_data.share_title||that.goods_data.goods_name,
					// path: '',
					imageUrl:that.goods_data.share_img||that.goods_data.main_img,
					success: function (res) {
					  
					  if(res.errMsg == 'shareAppMessage:ok'){
						console.log("成功",res)
					  }
					},
					fail:function(res){
					  
					  console.log("失败",res)
					  
					}
				}
			}
			
		}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/548443
推荐阅读
相关标签
  

闽ICP备14008679号