怎么分享多张图片
发布于 5 年前 作者 xionggang 5872 次浏览 来自 问答
 onShareAppMessage: function (res) {    if (res.from === 'button') {      // 来自页面内转发按钮
      console.log(res.target)
    }    return {
      title: '自定义转发标题',

     path: '/page/user?id=123',

      imageUrl:'/assets/1.png',

     success: function(res) {        // 转发成功      },      fail: function(res) {        // 转发失败      }    }  }

imageUrl,怎么传入多个路径

3 回复

小程序的分享,之前是视图截图形式,最后新更新可以定制图片,这个图片是作为分享内容封面的,不可以搞多张,有且只能是定制一张,可以根据不同分享内容,设置不同的imageUrl,这是可以的。

嗯 没关系

好的,明白了,非常感谢!

回到顶部