文档错误,分享周期文档错误
发布于 6 年前 作者 yuanqiang 11138 次浏览 来自 问答

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

示例代码

在开发者工具中预览效果

Page({
  onShareAppMessage(res) {    if (res.from === 'button') {      // 来自页面内转发按钮
      console.log(res.target)

   }    return {      

        title: '自定义转发标题',      

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

   }  } })

 path: ‘/page/user?id=123’  ,这个 path 里面的 page 不做成 pages,

使用的时候没有看,就也直接使用的 page,然后分享页面就找不到了。

1 回复

这个依照项目中的实际页面路径哈

回到顶部