请问 我在JS里添加了转发功能 但是发布以后还是不显示!
onShareAppMessage: function (res) {
if (res.from === ‘button’) {
// 来自页面内转发按钮
console.log(res.target)
}
return {
title: '转发标题,// 转发的标题
path: ‘/page/map/index’,// 我转发的路径
success: function (res) {
// 转发成功
},
fail: function (res) {
// 转发失败
}
}
},