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

前提是你 提交于 2020-03-12 03:20:47

自定义分享图片

  1. onShareAppMessage: (res) => {
  2. if (res.from === 'button') {
  3. console.log("来自页面内转发按钮");
  4. console.log(res.target);
  5. }
  6. else {
  7. console.log("来自右上角转发菜单")
  8. }
  9. return {
  10. title: '21天攻克考研长难句',
  11. path: '/pages/index/index?id=123',
  12. imageUrl: "/images/1.jpg",
  13. success: (res) => {
  14. console.log("转发成功", res);
  15. },
  16. fail: (res) => {
  17. console.log("转发失败", res);
  18. }
  19. }

     

    在转发中,将缩略图改为自定义图片。

     

    欢迎关注,有问题一起学习欢迎留言、评论。

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!