美文网首页
微信小程序自定义分享图片标题

微信小程序自定义分享图片标题

作者: IamaStupid | 来源:发表于2022-03-01 20:00 被阅读0次

    微信小程序自定义分享图片标题

    参考: https://developers.weixin.qq.com/miniprogram/dev/reference/api/Page.html

    onShareAppMessage: function() {
            return {
              title: 'xxxxYYYY',
              desc: 'abcd',
              path: 'pages/company/index',
              imageUrl: 'https://xxx/share.jpg', // 可以更换分享的图片
              success: function (res) {
                // 转发成功
                wx.showToast({
                  title: '分享成功',
                  icon: "none"
                });
              },
              fail: function (res) {
                // 转发失败
                wx.showToast({
                  title: '分享失败',
                  icon: "none"
                })
              }
            }
    },
    

    相关文章

      网友评论

          本文标题:微信小程序自定义分享图片标题

          本文链接:https://www.haomeiwen.com/subject/ahrjrrtx.html