這篇文章給大家分享的是有關(guān)怎么在小程序頁(yè)面內(nèi)進(jìn)行轉(zhuǎn)發(fā)操作的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來(lái)看看吧。
我們先來(lái)看看官方文檔上的內(nèi)容:
官方文檔上說(shuō)通過給 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ò),可以把它分享出去讓更多的人看到吧!
當(dāng)前名稱:怎么在小程序頁(yè)面內(nèi)進(jìn)行轉(zhuǎn)發(fā)操作-創(chuàng)新互聯(lián)
標(biāo)題來(lái)源:http://www.chinadenli.net/article44/gsjhe.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站改版、定制網(wǎng)站、網(wǎng)站設(shè)計(jì)、響應(yīng)式網(wǎng)站、定制開發(fā)、自適應(yīng)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容