在需要分享的页面js文件中写:
Page({
onShareAppMessage() {
const promise = new Promise(resolve => {
setTimeout(() => {
resolve({
title: '自定义转发标题'
})
}, 2000)
})
return {
title: '自定义转发标题',
path: '/page/user?id=123',
promise
}
}
})
在需要分享的.wxml文件中
<button open-type="share"></button>
//有定义了此事件处理函数,右上角菜单才会显示“转发”按钮