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+‘现在还不能实现分享功能‘, }) } }) },