小程序分享給朋友
在dom里添加如下代碼,點擊按鈕觸發分享
<button open-type="share">分享</button>
onShareAppMessage 重點是這個事件和data是同級
// 自定義分享給朋友
onShareAppMessage: function(res) {
if (res.from === 'button') {
// 來自頁面內轉發按鈕
console.log(res.target)
}
return {
// 自定義分享內容,通過右上角三個點
title: '轉發給朋友測試', // 自定義的title
path: '/pages/myself/myself', // 自定義的頁面path
imageUrl: 'https://dss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=1245218877,2749263190&fm=26&gp=0.jpg' // 自定義的圖片
}
},
