微信小程序转发功能,参考官方文档,使用buttom的开放式功能,下面是转发功能的具体实现。//通过按钮的open-type="share"实现转发,触发onShareAppMessage函数Forward//用户点击右上角分享转发onShareAppMessage(){return{title:decodeURIComponent('customtitle'),//分享标题imageUrl:"图片路径",//分享时显示图片的路径:"/pages/goodsDetail/goodsDetail"+id//页面和其他人点击链接输入Passedparameters}}有时候转发分享的中文标题是乱码,例如:%5456%654/545/45%5456解决方法如下:onShareAppMessage(){return{title:decodeURIComponent('customtitle'),//这里使用decodeURIComponent()转码imageUrl:"图片路径",path:"/pages/goodsDetail/goodsDetail"+id//别人点击链接的页面传递的参数}}