一、微信小程序
在制作微信小程序的时候怎么将页面分享到朋友圈或者朋友
1.onShareAppMessage 分享给好友
/**
* 分享当前页面
*/
onShareAppMessage() {
const _this = this;
return {
title: 'xxxxxx',//标题
path: "/pages/index/index?",//链接
imageUrl:"",//图片链接,如果没有这个参数默认是微信小程序的logo
};
},
/**


2.分享到朋友圈,目前这个只有在安卓平台支持
/**
* 分享到朋友圈
* 本接口为 Beta 版本,暂只在 Android 平台支持,详见分享到朋友圈 (Beta)
*/
onShareTimeline() {
const _this = this;
return {
title:'xxxx',
path: "/pages/index/index?", };
},
上面两个都是右上角 按钮触发的分享

自定义按钮 需要要