微信小程序-页面分享 onShareAppMessage

效果


js

let app = getApp();
Page({
  data: {
    img: "/images/1.jpg"
  },
  onLoad() {
  },
  showShareMenu() {
    wx.showShareMenu();
    console.log("显示了当前页面的转发按钮");
  },
  hideShareMenu() {
    wx.hideShareMenu();
    console.log("隐藏了当前页面的转发按钮");
  },
  onShareAppMessage: (res) => {
    if (res.from === 'button') {
      console.log("来自页面内转发按钮");
      console.log(res.target);
    }
    else {
      console.log("来自右上角转发菜单")
    }
    return {
      title: '妹子图片',
      path: '/pages/share/share?id=123',
      imageUrl: "/images/1.jpg",
      success: (res) => {
        console.log("转发成功", res);
      },
      fail: (res) => {
        console.log("转发失败", res);
      }
    }
  }
})

html

<view class="view">
  <image class="cover-9" src="{{img}}" bindtap="img"></image>
  <view class="window-1">
    <button type="default" id="open" bindtap="showShareMenu">开启分享</button>
    <button type="warn" id="close" bindtap="hideShareMenu">关闭分享</button>
  </view>
  <button type="primary" open-type="share" data-name="pageShare" id="share">点击分享</button>
</view>

css

page{
  height: 100%;
}
.view{
  width: 100%;
  height: 100%;
}
.window-1{
  display: flex;
  flex-direction: row;
  margin: 20rpx 0;
}
.cover-9{
  width: 688rpx;
  height: 75%;
  margin: 0 30rpx;
  border:2rpx solid;
  border-radius:5px;  
}
button{
  margin: 0 10rpx;
  width: 100%;
}
#share{
  width: 730rpx;
}

意外金喜的博客:http://blog.csdn.net/zzwwjjdj1

更多小程序文章:http://blog.csdn.net/zzwwjjdj1/article/details/79351547
关注公众号:


在小程序中,我们可以通过在页面中定义 `onShareAppMessage` 方法来自定义分享内容。 具体步骤如下: 1. 在需要分享页面的 `.js` 文件中,定义 `onShareAppMessage` 方法: ```javascript Page({ onShareAppMessage: function () { return { title: '分享标题', path: '/pages/index/index', imageUrl: 'http://example.com/share.jpg' } } }) ``` 2. 在 `onShareAppMessage` 方法中,我们可以返回一个对象,该对象中包含以下参数: - `title`:分享标题,必填项。 - `path`:分享路径,必填项。 - `imageUrl`:分享图片地址,可选项。 3. 在 `onShareAppMessage` 方法中,我们可以通过调用微信提供的 API 获取当前页面的一些信息,例如页面标题、路径等。例如: ```javascript Page({ onShareAppMessage: function () { const title = this.data.title // 页面标题 const path = '/pages/index/index' // 页面路径 const imageUrl = 'http://example.com/share.jpg' // 分享图片地址 return { title: title, path: path, imageUrl: imageUrl } } }) ``` 4. 在 `.wxml` 文件中,我们可以添加一个分享按钮,并将其绑定到 `onShareAppMessage` 方法: ```html <button class="share-btn" bindtap="onShareTap">分享给好友</button> ``` ```javascript Page({ onShareTap: function () { wx.showShareMenu({ withShareTicket: true }) }, onShareAppMessage: function () { // ... } }) ``` 以上就是在微信小程序中通过 `onShareAppMessage` 方法自定义分享内容的方法。
评论 8
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值