码迷,mamicode.com
首页 > 微信 > 详细

微信小程序 之 分享给朋友 以及二维码传参及接收

时间:2020-07-22 20:59:33      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:style   inf   return   size   btn   ons   接收参数   tar   index   

1、分享给朋友

分享给朋友是小程序自带API: onShareAppMessage

button组件配置open-type=‘share‘

 <button class="mini-btn" type="primary" size="mini" bindtap="handleCode" data-type="replay" data-url="{{erweiCOde}}" open-type="share" data-EMcode="{{employeeCode}}">发送给朋友</button>

JS

  onShareAppMessage: function(res) {
    console.log(res)
    let that = this;
    const obj = {
      title: "发送给好友",
      imageUrl: that.data.erweiCOde,
      path: /pages/login/index?employeeCode=+res.target.dataset.emcode,(打开路径,在打开页面里的onload里接收参数)
      success: function(res) {
        console.log(res, "转发成功")
      },
      fail: function(res) {
        wx.showToast({
          title: 发送失败,
          icon:none
        })
      }
    }
    return obj
  }

2、小程序二维码生成

小程序二维码生成一般是后端提供接口,前端请求的时候只要进行参数配置

主要参数:

①、scene:要携带的参数

②、path:扫二维码要进入的页面路径

技术图片

 

 

要注意的是二维码进入进入的页面参数的接收(在要进入页面的onload里面)

技术图片

 

一定要用  decodeURIComponent() 进行二维码解析

 

微信小程序 之 分享给朋友 以及二维码传参及接收

标签:style   inf   return   size   btn   ons   接收参数   tar   index   

原文地址:https://www.cnblogs.com/xxflz/p/13362427.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!