说明:分享到朋友圈,需要在公众号后台进行认证需要30米。
1.分享到好友
1.1uniapp官网找到这个方法
1.2搜索该方法找参数
1.3代码实现导入方法,实现方法
import{onShareAppMessage,
onShareTimeline
} from '@dcloudio/uni-app'
//分享到微信好友
onShareAppMessage((e) => {
return {
title: "咸虾米~~~~",
//注意这里是path,url是h5分享链接
path: "/pages/index/index"
}
})
1.4开发工具启动右上角分享
2.分享朋友圈
2.1微信开发文档中
2.2导入方法实现
import{onShareAppMessage,
onShareTimeline
} from '@dcloudio/uni-app'
//分享到微信朋友圈,已缴费嘿嘿嘿
onShareTimeline(() => {
return {
title: '咸虾米~~~',
//可以设置imgeUrl参数
//imageUrl: ""
}
})
2.3效果
后台认证后方可实现该功能。