看到小程序在测试分享到朋友圈功能,于是尝试了下,给小程序更新个分享到朋友圈功能。* F& H* _2 w% s
* A" y/ W- [% ]7 r9 \
根据小程序官方文档,需要有onShareAppMessage()和onShareTimeline()这2个才能实现,而且目前只支持开发者用安卓机分享,后续应该会慢慢增加优化,参考代码:
; K2 x1 b" Q* b- C: C/ p写法一
2 l- J4 s! t; {/ R6 Y5 V: V, s# u7 J( x( f/ J0 W2 ^
/**分享到朋友圈一*/
onShareTimeline: function () {
var that = this;
var id= wx.getStorageSync('id')
return {
title: that.data.noticedetail[0].title,
query: 'id= ' + id, //这里是query,只需要传参就行,不用写路径
imageUrl: that.data.noticedetail[0].thumb
}
} 写法二
, I1 F) _# b9 f$ z2 F /**分享到朋友圈二*/
onShareTimeline(res){
console.log(res)
return {
title: '测试小程序分享至朋友圈',
path: '../test/test',
imageUrl:'https://cdn.u1.huluxia.com/g4/M01/AB/6C/rBAAdmARRRGAITfTAADK-6nPHMA588.jpg'
}
},
|