由於小程序中多個頁面都會使用分享,須要咱們把分享功能,單獨寫在一個公用的文件中。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.jsui
const util = require('./utils/util.js');
/**code
*/get
onShareAppMessage: function(option){ console.log(option); let obj = { title: '個人老窩', path: 'pages/index/index', imageUrl: '' }; return util.shareEvent(option, obj); }
備註:記得要在調用的時候使用,return。it