获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
我遇到同样的问题,query的参数格式如:path?a=1&b=2 页面接收不到 ?后的参数啊
onShareAppMessage 和 onShareTimeline 返回对象是一样的吗?onShareAppMessage 是分享给好友,onShareTimeline 是分享到朋友圈。 https://developers.weixin.qq.com/miniprogram/dev/reference/api/Page.html#onShareAppMessage-Object-object https://developers.weixin.qq.com/miniprogram/dev/reference/api/Page.html#onShareTimeline 如果 path 需要携带参数,二者的写法是不是不一样? 比如: // 分享给好友 onShareAppMessage(){ return { path: '/pages/index/index?name=123' }; }, // 分享到朋友圈 onShareTimeline(){ return { path: '/pages/index/index', query: 'name=123' }; } 官方文档说的含糊其词,也没找到示例!
2022-07-25