微信小程序添加分享功能(分享给朋友) uniapp版
先创建一个.js文件
代码如下
export default{ data(){ return { //设置默认的分享参数 share:{ title:'XXXX', path:'/pages/index/index', imageUrl:'', desc:'', content:'' } } }, onShareAppMessage(res) { return { title:this.share.title, path:this.share.path, imageUrl:this.share.imageUrl, desc:this.share.desc, content:this.share.content, success(res){ uni.showToast({ title:'分享成功', icon: 'success', mask: true, duration: 1200 }) }, fail(res){ uni.showToast({ title:'分享失败', icon:'none', mask: true, duration: 1200 }) } } } }
然后在main.js中引入即可
import share from '@/js/share.js'
Vue.mixin(share)
这样就可以了