在自定义组件中,onShareAppMessage触发不了吗
===wxml
< button open-type = "share" >分享</ button > |
===js
Component({ properties:{ //some props... }, data:{ //some data... }, attached(){ //loaded... }, methods:{
console.log(res); if (res.from === 'button' ) { // 来自页面内转发按钮 console.log(res.target) } return { title: '自定义转发标题' , path: '/page/user?id=123' , success: function (res) { // 转发成功 }, fail: function (res) { // 转发失败 } } } } }) |