这种方式是通过监听用户单击右上角的行为触发onShareAppMessage函数设置转发的

    onShareAppMessage里返回转发信息,代码如下所示。

    1. Page({
    2. ...省略部分代码
    3. onShareAppMessage: function () {
    4. return {
    5. title: "分享标题",
    6. path: '/pages/index/index', //设置分享的页面
    7. imageUrl: "分享链接的封面图",
    8. success: function (res) {
    9. console.log("转发成功")
    10. },
    11. fail: function (res) {
    12. console.log("转发失败")
    13. }
    14. }
    15. }
    16. });

    开启onShareAppMessage监听后,单击右上角就可以看到转发按钮