// pages/index/index.wxml <button data-name="shareBtn" open-type="share">分享</button> |
// pages/index/index.js
Page({
/**
* 頁(yè)面的初始數(shù)據(jù)
*/
data: {
},
/**
* 生命周期函數(shù)--監(jiān)聽(tīng)頁(yè)面加載
*/
onLoad: function (options) {
},
/**
* 用戶點(diǎn)擊右上角分享
*/
onShareAppMessage: function () {
return{
title:'越分享越快樂(lè)',
path:"/pages/index/index",
imageUrl: "/pages/images/1.png"
};
}
})
|