<view class="share-box">
<image data-id="{{article.id}}" bindtap="videoShare" class='video-share' src='/images/icon/class/share2.png'/>
<button data-id="{{article.id}}" class='video-share-btn' plain="{{true}}" open-type="share"> </button>
</view>
// 分享
onShareAppMessage: function (id) {
return {
title: '孕育课堂',
path: '/pages/pregnantClass/detail/index?id='+id, //分享的页面所需要的id
imageUrl: this.data.article.video_img //分享界面的图片
}
},
样式:
1.onShareAppMessage方法,必须使用<button open-type="share">
, open-type="share"放在别的组件上无效
2.<button>
有个属性 plain 设置为true,然后用定位将自己的图片和button重合在一起即可
分享:
1.onShareAppMessage 方法中 path 后面的 id,是你需要分享的页面所需要的id,传过去即
可,onLoad(options)可以接收到,如果不需要id,就传个空或者随便123都行
2.onShareAppMessage 方法中的 imageUrl 就是分享界面的图片