当前位置: 首页 > article >正文

微信小程序-转发/分享/手机号验证/客服

一.转发

1.页面JS文件必须声明onShareAppMessage监听函数

  //监听页面按钮的转发 以及 右上角的转发按钮转发
  onShareAppMessage(obj){
    console.log(obj)
    return {
      title:"转发",
      path:"/pages/cat/cat",
      imageUrl:"../../assets/Jerry.png"
    }
  }

2.button组建的open-type值设置为share

<button open-type="share">转发</button>

二.分享

JS文件里必须声明onShareAppMessage和onShareTimeline监听函数。
注意如果监听函数存在朋友圈分享功能依旧不起作用,请检查微信小程序是否进行了认证。在认证过程中腾讯官方会打电话联系,请注意接听。

  //监听页面按钮的转发 以及 右上角的转发按钮转发
  onShareAppMessage(obj){
    console.log(obj)
    return {
      title:"转发",
      path:"/pages/cat/cat",
      imageUrl:"../../assets/Jerry.png"
    }
  },
  //设置朋友圈分享监听函数,前提有转发监听函数
  onShareTimeline(){
    console.log(1)
    return {
      title:"分享朋友圈",
      query:"id=1",
      path:"/pages/cat/cat",
      imageUrl:"../../assets/Jerry.png"
    }
  }

在这里插入图片描述

三.手机号验证

手机号验证分为快速验证bindgetphonenumber和手机号实时验证bindgetrealtimephonenumber

<button
type="primary"
plain="ture"
open-type="getPhoneNumber"
bindgetphonenumber="getPhoneNumber"
>快速验证组件</button>
<view class="line"></view>
<button
type="warn"
plain="ture"
open-type="getRealtimePhoneNumber"
bindgetrealtimephonenumber="getRealtimePhoneNumber"
>实时验证组件</button>

JS里处理绑定的事件

  getPhoneNumber(event){
    console.log(event)
  },
  getRealtimePhoneNumber(event){
    console.log(event)
  }

四.客服

1.button按钮的open-type为contact

<button type="open" plain="true" open-type="contact">联系客服</button>

2.需要在微信小程序平台添加客服人员
在这里插入图片描述
3.进入到客服平台
在这里插入图片描述


http://www.kler.cn/a/370140.html

相关文章:

  • linux下springboot项目nohup日志或tomcat日志切割处理方案
  • Python----Python高级(正则表达式:语法规则,re库)
  • element el-table合并单元格
  • 【HarmonyOS NEXT】华为分享-碰一碰开发分享
  • Excel 技巧17 - 如何计算倒计时,并添加该倒计时的数据条(★)
  • Tcl教程
  • uniapp实现左滑删除(详解)
  • python代码中通过pymobiledevice3访问iOS沙盒目录获取app日志
  • C语言中的数组并非指针:深入理解数组和指针的区别
  • EasyPlayer.js网页播放器,支持FLV、HLS、WebSocket、WebRTC、H.264/H.265、MP4、ts各种音视频流播放
  • PHP轻松阅读图书借阅系统小程序源码
  • 5KB实现html+js+css+json无限极分类展现带连线完整实例
  • vue中elementUI的el-select下拉框的层级太高修改设置!
  • el-menu,菜单折叠后菜单项文字不隐藏
  • Makefile Npm
  • 【香蕉成熟度数据集】香蕉新鲜腐烂识别检测 目标检测 机器视觉 (含数据集)
  • 51单片机应用开发---定时器(定时1S,LED以1S间隔闪烁)
  • VulkanTutorial(8·Shader modules)
  • 如何加速你的 JavaScript【Part 4】:减少 DOM 操作
  • Ubuntu:docker 安装和使用
  • windows 编译 breadpad
  • 深度学习-学习率调整策略
  • 15分钟学 Go 第 22 天:包的使用
  • gymnasium代码运行
  • vue3使用vuedraggable 实现页面div拖拽和缓存
  • 算法4之链表