1、開啟分享(放在onLoad中開啟分享按鈕杠氢,放在app.js的onLaunch中對(duì)全局有效)
//開啟轉(zhuǎn)發(fā)按鈕
wx.showShareMenu({
withShareTicket: true
})
2油宜、設(shè)置全局分享代碼,分享代碼放在 app.js 第一行
!function(){
var PageTmp = Page;
Page =function (pageConfig) {
// 設(shè)置全局默認(rèn)分享
pageConfig = Object.assign({
//右上角分享功能
onShareAppMessage () {
var shareImage = ['../../image/share1.png','../../image/share2.png','../../image/share3.png'];//數(shù)組
var shareTitle = ['標(biāo)題1','標(biāo)題2'];//數(shù)組和圖片分開隨機(jī)不對(duì)應(yīng)
var image = shareImage[Math.floor(Math.random() * shareImage.length)];
var title = shareTitle[Math.floor(Math.random() * shareTitle.length)];
return {
title: title,//分享標(biāo)題
path: '/pages/index/index',//分享用戶點(diǎn)開后頁面
imageUrl: image,//分享圖片
success (res) {
console.log('分享成功躏敢!')
}
}
}
},pageConfig);
PageTmp(pageConfig);
};
}();
完成
備注:實(shí)現(xiàn)環(huán)境基礎(chǔ)庫版本2.11.0,其他版本沒有測試