小程序转发设置不生效
未上线的小程序,使用下面的代码,转发出去标题没有改变 [代码]Page({
onShareAppMessage: function (res) { [代码] [代码] if (res.from === 'button') { // 来自页面内转发按钮[代码] [代码] console.log(res.target)
} return {
title: '测试标题',
path: '/page/hot/hot',
success: function(res) { // 转发成功[代码] [代码] console.log(res);[代码] [代码] },
fail: function(res) { // 转发失败[代码] [代码] console.log('error', res);[代码] [代码] }
}
}
})[代码] 下面是调试的结果图 [图片]