您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)怎么在小程序頁(yè)面內(nèi)進(jìn)行轉(zhuǎn)發(fā)操作的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來(lái)看看吧。
我們先來(lái)看看官方文檔上的內(nèi)容:
官方文檔上說通過給 button 組件設(shè)置屬性 open-type="share",可以在用戶點(diǎn)擊按鈕后觸發(fā) Page.onShareAppMessage 事件,相關(guān)組件:button。
官網(wǎng)文檔:https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share.html
第一種情況 點(diǎn)擊小程序轉(zhuǎn)發(fā)
不加入?yún)?shù)
//轉(zhuǎn)發(fā) onShareAppMessage: function() { let users = wx.getStorageSync('user'); if (res.from === 'button') {} return { title: '轉(zhuǎn)發(fā)', path: '/pages/index/index', success: function(res) {} } }
加入?yún)?shù)
//轉(zhuǎn)發(fā) onShareAppMessage: function() { let users = wx.getStorageSync('user'); if (res.from === 'button') {} return { title: '轉(zhuǎn)發(fā)', path: '/pages/index/index?from_uid=' + users.id, success: function(res) {} } }
第二種:分享
這個(gè)分享必須做成button 且加上 open-type="share"
不加入?yún)?shù)
onShareAppMessage: function (res) { if (res.from === 'button') { } return { title: '轉(zhuǎn)發(fā)', path: '/pages/index/community/topic/topic', success: function (res) { console.log('成功', res) } } }
加入?yún)?shù)
//轉(zhuǎn)發(fā) onShareAppMessage: function (res) { if (res.from === 'button') { } return { title: '轉(zhuǎn)發(fā)', path: '/pages/index/community/topic/topic?jsonStr=' + this.data.list, success: function (res) { console.log('成功', res) } } }
提醒:這里轉(zhuǎn)發(fā)的參數(shù)要在onLoad 的options 運(yùn)用
感謝各位的閱讀!關(guān)于“怎么在小程序頁(yè)面內(nèi)進(jìn)行轉(zhuǎn)發(fā)操作”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。