PC端打开分享的小程序,没有进入分享指定的path
发布于 7 年前 作者 cyang 7488 次浏览 来自 问答
/**
   * 用户点击右上角分享
   */onShareAppMessage: function (res) {
    if (res.from === 'button') {
      // 来自页面内转发按钮console.log(res.target)
    }
    const tempObj = { ... }; // 分享 参数 object 
    
    const path = '/pages/aboutME/detail/index?item=' + JSON.stringify(tempObj)
    return {
      title: '您收到一份调研问卷',
      path,
      imageUrl: '../images/share-card.png'
    }
  },
2 回复

不能,打开后还是进入微信的主页面。

请具体描述问题出现的流程,并提供能复现问题的简单代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html

回到顶部