uni-app微信小程序分享功能
1、创建一个js文件(share.js)export default{data(){return {//设置默认的分享参数share:{title:'ALAPI',path:'/pages/index/index',imageUrl:'',desc:'',
·
1、创建一个js文件(share.js)
export default{
data(){
return {
//设置默认的分享参数
share:{
title:'ALAPI',
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:'分享成功'
})
},
fail(res){
uni.showToast({
title:'分享失败',
icon:'none'
})
}
}
}
}
2、全局使用, 在 main.js 里面 添加全局的 mixin
import share from ‘@/…你的路径…/share.js’
Vue.mixin(share)
3、在需要的页面进行调用就行啦
export default {
data(){
return {
//设置默认的分享参数
share:{
title:'ALAPI',
path:'/pages/index/index',
imageUrl:'',
desc:'',
content:''
}
}
},
借鉴于大佬https://www.cnblogs.com/sxdpanda/p/13674057.html
更多推荐
已为社区贡献1条内容
所有评论(0)