wechat-小程式-分享
阿新 • • 發佈:2018-11-05
title: wechat-小程式-分享
categories: Wechat
tags: [wechat, 分享, 小程式]
date: 2018-10-29 14:13:18
comments: false
參考文件
觸發分享的兩種方式
-
右上角選單
-
頁面 自定義按鈕
只需要在 button 標籤中加入
open-type="share"
<view class="btn-area"> <button type="primary" open-type="share">分享</button> </view>
這兩種方式都會觸犯分享, 並呼叫 Page.onShareAppMessage
方法
分享傳遞引數
-
onShareAppMessage 定義相關引數
onShareAppMessage:
-
測試
a用 戶分享給 b使用者, b使用者點選後會 直接跳轉到
/pages/show/show
介面 並在Page.onLoad
方法中可以獲取到引數 id 和 nameonLoad: function (options) { gLog("--- show onLoad", options) },