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