open-type='share'无效
发布于 7 年前 作者 dpeng 13124 次浏览 来自 问答

<button class=‘share’  open-type=‘share’>

<image   src=’/img/share.png’></image>

</button>

onShareAppMessage:function(res){

if (res.from === ‘button’) {

// 来自页面内转发按钮

console.log(res.target)

}

console.log(‘转发’)

return {

title: ‘’,

path: ‘’

}

}

点击后在onShareAppMessage里面的log在控制台有显示,但是小程序没有其他任何反应

回到顶部