开发板onShareAppMessage问题
开发版的小程序使用onShareAppMessage接口设置了title但是为什么转发出去没有呢,而且log也没打印,我用的是页面内转发按钮触发的,是开发版的bug吗
onShareAppMessage: function (res) {
console.log(res)
return {
title: this.data.userName+‘邀请你加入班级’,
imageUrl:"",
path:"/pages/addClass/addClass",
success: function (res) {
// 转发成功
},
fail: function (res) {
// 转发失败
}
}
}