微信小程序怎么實(shí)現(xiàn)分享?在小程序功能開發(fā)中,多個(gè)頁面都會(huì)涉及使用分享,需要我們把分享功能,單獨(dú)寫在一個(gè)公用的文件中。util.js 文件中。
//分享功能
const shareevent = (option, obj) => {
let shareobj = {
title: obj.title,
path: obj.path,
imgurl: obj.imgurl,
success(res){
// 轉(zhuǎn)發(fā)成功之后的回調(diào)
if (res.errmsg == 'shareappmessage:ok') {}
},
fail(res){
// 轉(zhuǎn)發(fā)失敗之后的回調(diào)
if (res.errmsg == 'shareappmessage:fail cancel') {
// 用戶取消轉(zhuǎn)發(fā)
} else if (res.errmsg == 'shareappmessage:fail') {
// 轉(zhuǎn)發(fā)失敗,其中 detail message 為詳細(xì)失敗信息
}
},
complete(){
// 轉(zhuǎn)發(fā)結(jié)束之后的回調(diào)(轉(zhuǎn)發(fā)成不成功都會(huì)執(zhí)行)
}
};
if (option.from === 'button') {
// 來自頁面內(nèi)轉(zhuǎn)發(fā)按鈕
console.log(option.target)
}
return shareobj;
}在使用分享的頁面中引入util.js
const util = require('./utils/util.js');
/
用戶點(diǎn)擊右上角分享
*/
onshareappmessage: function(option){
console.log(option);
let obj = {
title: '我的老窩',
path: 'pages/index/index',
imageurl: ''
};
return util.shareevent(option, obj);
}備注:記得要在調(diào)用的時(shí)候使用,return。
教程來源:php中文網(wǎng)
原文鏈接:https://www.php.cn/xiaochengxu-409286.html
西部數(shù)碼網(wǎng)站提供微信小程序制作神器,無需懂技術(shù),直接套用微信小程序模板,可視化拖拽編輯,一鍵快速生成微信小程序。產(chǎn)品鏈接 https://www.west.cn/web/sites/