分享到朋友圈按钮是灰色,同样的代码在体验版上可以分享到朋友圈,什么原因?
发布于 7 年前 作者 hcai 2580 次浏览 最后一次编辑是 6 年前 来自 官方Issues

 遇到一个比较奇怪的问题,分享到朋友圈按钮是灰色,同样的代码在体验版上可以分享到朋友圈,代码如下

 onShareTimeline: function(res){

    return {

      title:  app.globalData.title,

      query: 'fid=' + app.globalData.zfid, //页面携带参数

      imageUrl:'/images/logo.jpg'   //图片地址

    }

  },



2 回复

分享到朋友圈的几大要点:

1、要有onShareAppMessage,并return
2、不是web-view页面。
3、onLoad里写上如下代码,点亮分享到朋友圈:
wx.showShareMenu({
      withShareTicket: true,
      menus: ['shareAppMessage', 'shareTimeline']
    });   
4、要有onShareTimeline,并return
5、目前只支持安卓手机,iPhone真机上目前不支持。

都是同一个设备?

回到顶部