赞
踩
分享朋友圈官方API:分享到朋友圈
用户在朋友圈打开分享的小程序页面,并不会真正打开小程序,而是进入一个“小程序单页模式”的页面,“单页模式”有以下特点:
总结:
1、朋友圈分享的页面没有数据请求,是因为页面中使用了【禁用能力的接口】,比如onLaunch获取token使用wx.login or uni.login登录接口。
2、解决方案:在朋友圈分享的页面中,所有的接口去掉token验证即可。
- data() {
- return {
- id: '66',
- }
- },
-
- // 分享
- onShareAppMessage() {
- return {
- title: '商品名称',
- path: '/pages/goods/goodsDetail/goodsDetail?id=' + this.id,
- // imageUrl: '',
- }
- },
-
- // 分享到朋友圈
- onShareTimeline(){
- return {
- title: this.adoptDetail.nickname,
- query: 'id=' + this.id,
- // imageUrl: '',
- }
- },
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。