小程序-分享菜单列表 与 音乐播放

 onShareTap: function(event) {
    // //缓存最大不能超过10m,如果不删除就是永久存在的
    // wx.removeStorageSync(‘key‘);//个别删除
    // wx.clearStorageSync();//全部删除

    const itemList = [
      ‘分享给好友‘,
      ‘分享到朋友圈‘,
      ‘分享到QQ‘,
      ‘分享到微博‘
    ]

    //操作菜单列表
    wx.showActionSheet({
      itemList: itemList,
      itemColor:‘#405f80‘,
      success:function(res){
           wx.showModal({
             title: ‘用户‘ + itemList[res.tapIndex],
             content: ‘用户是否取消?‘ + res.errMsg+‘现在还不能实现分享功能‘,
           })
      }
    })
  },

 

小程序-分享菜单列表 与 音乐播放

上一篇:小程序接收from表单数据(实例)


下一篇:微信小程序中样式问题