微信小程序取消分享的两种方式

1. 注释onShareAppMessage函数

Page({

/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {

  }
})

2. onload函数中加入wx.hideShareMenu({})函数

Page({

/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
    wx.hideShareMenu({

})
  },
    })

原文地址:https://www.cnblogs.com/daviddd/p/12272060.html

时间: 2024-10-30 22:35:18

微信小程序取消分享的两种方式的相关文章

微信小程序全局设置分享内容

微信小程序每个页面都可以在onShareAppMessage中设置分享内容,如果想要全局设置成一样的分享内容如何设置呢? 在app.js中新增以下方法: 1 //重写分享方法 2 overShare: function () { 3 //监听路由切换 4 //间接实现全局设置分享内容 5 wx.onAppRoute(function (res) { 6 //获取加载的页面 7 let pages = getCurrentPages(), 8 //获取当前页面的对象 9 view = pages[

微信小程序使用分享

页面分享是小程序扩散的一种重要方式,小程序中有两种分享方式 点击右上角的菜单按钮,之后点击转发 点击某一个按钮,直接转发 当我们转发给好友一个小程序的时候,通常小程序中会显示一些信息 那怎么决定这些信息的呢? 就是通过page页面的生命周期函数 方式一: 方式二: 难道只能通过点击右上角分享吗? 其实可以自己定义一个按钮  它的脚本代码就是生命周期函数里的onShowAppmessage 原文地址:https://www.cnblogs.com/gsq1998/p/12408967.html

微信小程序传参数的几种方法

1,navigator 跳转时 wxml页面(参数多时可用"&") <navigator url='../index/index?id=1&name=aaa'></navigator> 或者添加点击事件,js用navigateTo跳转传参,两种效果一样 wx.navigateTo({ url: '../index/index?id=1&name=aaa', }) js页面  在onLoad里直接获取 onLoad: function (o

iOS程序编译打包的两种方式

这个选项其实是用来设置我们要如何打包我们的代码. Architectures: 项目要编译的目标设备列表, 设置以哪种方式打包我们的代码 第一种方式: 包含两种架构的代码包(32bit, 64bit), 但是这种打包方式只能运行在iOS6以上的系统, 也就是说这种打包方式, 对手机没有要求, 只是对系统有要求. 第二种方式: 只包含一种架构的代码(32bit), 这种打包方式, 对于手机和系统都没什么要求, 但是这样会降低64位系统的手机性能 如果要兼容iOS5以及更低的系统, 只能打32位的包

微信小程序之分享,动态添加分享数据

1.效果: 2..js代码: page({ /** * 用户点击分享按钮或右上角分享 */ onShareAppMessage: function (res) { var that = this; return { title: that.data.common.act_name, desc: that.data.common.introduction, path: '/pages/xiangqing/xiangqing?id='+that.data.id, success: function

微信小程序使用函数的三种方法

使用来自不同页面的函数 函数写在util.js页面 function formatTime(date) { var year = date.getFullYear() var month = date.getMonth() + 1 var day = date.getDate() var hour = date.getHours() var minute = date.getMinutes() var second = date.getSeconds() return [year, month,

微信小程序取消button边框线

先给button定义个class属性 <button class="an"> 按钮 </button> 然后再css上加上 .an::after { border: none; } 原文地址:https://www.cnblogs.com/junyi-bk/p/10600940.html

微信小程序wx.uploadFile的两个坑

setImage:function(e){ var _this = this //坑1 wx.chooseImage({ count: 1, sizeType: ['original', 'compressed'], sourceType: ['album', 'camera'], success: function (res) { var tempFilePaths = res.tempFilePaths console.log(tempFilePaths) wx.uploadFile({ u

小程序页面传值的几种方式

1.  url传值 list.wxml: <view class="playIcon"> <image src="../../iconfont/play_init.png" bindtap="playAudio" data-songid="{{song.song_id}}"></image> </view> list.js: playAudio: function (event)