存在 web-view 组件的页面不支持发起分享朋友圈。
//在页面相应的js文件中增加如下方法
//分享用户
onShareAppMessage: function () { return { title: '标题', path: '/pages/index/index', success: function(res) { // 分享成功 }, fail: function(res) { // 分享失败 } } },
//分享朋友圈(web-view组件的页面不支持分享朋友圈) onShareTimeline: function () { return { title: '标题', query: '/pages/index/index', imageUrl: '分享图片的地址' } }
标签:function,index,启用,web,朋友圈,分享,页面 From: https://www.cnblogs.com/romanticcrystal/p/17744549.html