微信小程序分享接口卡片图片尺寸比例

调用微信小程序分享需要button标签

<button open-type="share">test</button>

然后在js的page里加一个函数

onShareAppMessage: function() {

   return {

       title: "小伙伴快来和我玩",

      imageUrl:"xxxx.png"

       path: "/pages/xxxx/xxxx/index?testid=" + this.data.id

   }

}

这里的imageUrl尺寸长宽比例是5:4

参考文档

猜你喜欢

转载自blog.csdn.net/zero_person_xianzi/article/details/88637297