麻豆做爰免费观看-日本熟妇一区二区三区-欧美午夜精品一区二区-xxxxx国产-精品欧美日韩-五月天黄色小说-亚洲熟妇一区-jizz国产视频-国产91九色-www好男人-国产精品久久久免费-九九热精彩视频-www..com国产-午夜簧片-欧美一区中文字幕-在线观看亚洲一区二区-一级少妇精品久久久久久久-www.欧美国产-日韩欧美综合视频-成人性视频免费网站

027-81331413

微信小程序開發之轉發分享功能

發布時間:2020-10-31 瀏覽:2075

第一種情況 點擊小程序轉發

不加入參數

1
2
3
4
5
6
7
8
9
10
//轉發
onShareAppMessage: function() {
let users = wx.getStorageSync('user');
if (res.from === 'button') {}
return {
 title: '轉發',
 path: '/pages/index/index',
 success: function(res) {}
}
}

加入參數

1
2
3
4
5
6
7
8
9
10
//轉發
onShareAppMessage: function() {
let users = wx.getStorageSync('user');
if (res.from === 'button') {}
return {
 title: '轉發',
 path: '/pages/index/index?from_uid=' + users.id,
 success: function(res) {}
}
}

第二種 分享

這個分享必須做成button 且加上 open-type="share"

不加入參數

1
2
3
4
5
6
7
8
9
10
11
onShareAppMessage: function (res) {
if (res.from === 'button') {
}
return {
 title: '轉發',
 path: '/pages/index/community/topic/topic',
 success: function (res) {
 console.log('成功', res)
 }
}
}

加入參數 

1
2
3
4
5
6
7
8
9
10
11
12
13
//轉發
onShareAppMessage: function (res) {
if (res.from === 'button') {
 
}
return {
 title: '轉發',
 path: '/pages/index/community/topic/topic?jsonStr=' + this.data.list,
 success: function (res) {
 console.log('成功', res)
 }
}
}

提醒:

這里轉發的參數要在onLoad 的options 運用