【bug】onShareAppMessage(options)里没有target
官方文档 https://developers.weixin.qq.com/miniprogram/dev/api/share.html
这里说由button发起的分享,onShareAppMessage里的options会返回target,但是实际测试却是,开发工具正常返回target,真机不返回target。
图一是开发工具的表现,图二是真机(华为荣耀8)的表现。
- 提供一个最简复现 Demo
<button size=“mini” type=“primary” open-type=“share”>分享button>
Page({
onShareAppMessage(options) {
if (options.from === ‘button’) {
wx.showModal({
content: JSON.stringify(options)
});
}
}
})
