由于小顺序中多个页面都邑运用分享,须要我们把分享功用,零丁写在一个公用的文件中。util.js 文件中。
//分享功用
const shareEvent = (option, obj) => {
let shareObj = {
title: obj.title,
path: obj.path,
imgUrl: obj.imgUrl,
success(res){
// 转发胜利以后的回调
if (res.errMsg == 'shareAppMessage:ok') {}
},
fail(res){
// 转发失利以后的回调
if (res.errMsg == 'shareAppMessage:fail cancel') {
// 用户作废转发
} else if (res.errMsg == 'shareAppMessage:fail') {
// 转发失利,个中 detail message 为细致失利信息
}
},
complete(){
// 转发完毕以后的回调(转发成不胜利都邑实行)
}
};
if (option.from === 'button') {
// 来自页面内转发按钮
console.log(option.target)
}
return shareObj;
}
在运用分享的页面中引入util.js
const util = require('./utils/util.js');
/**
- 用户点击右上角分享
*/
onShareAppMessage: function(option){
console.log(option);
let obj = {
title: '我的老窝',
path: 'pages/index/index',
imageUrl: ''
};
return util.shareEvent(option, obj);
}
备注:记得要在挪用的时刻运用,return。