- 如何禁用或者隐藏小程序点击右上角后弹出的复制短链功能?
要如何才可以把点击右上角后弹出的操作弹窗中的复制链接/复制短链功能给屏蔽掉或者禁用? [图片]
2021-04-01 - 小程序页面分享的函数的return可以延迟执行吗?
页面有多个分享按钮,但每次点击分享按钮,需要请求接口得到新的数据(分享数据),但onShareAppMessage()函数中的return等不及新的数据获取到就已经执行了,要怎么解决这个问题呢?有试过用setTimeOut,但这样出现的后果就是啥也没有获取到,直接就是默认的页面分享内容。 <button class="bottom_right" id="shareBt_{{item.igp_id}}" data-igp_id="{{item.igp_id}}" open-type="share" data-group_id="{{item.group_id}}"> <image src="https://shop.udaer.net/mini_images/find_oprate_bt_icon_02.png" mode="widthFix"></image>分享接龙 </button> [图片] [图片] [图片]
2021-03-17 - 通过按钮调用系统的分享onShareAppMessage(),return()获取不到最新的参数?
通过按钮调用系统的分享onShareAppMessage(),点击不同的按钮时需要请求接口返回不同的分享参数,但return()获取不到最新的参数,老是获取到上一次分享的数据,这个要怎么解决?试过用setTimeOut(),结果出来就是没有任何参数,全部是默认的分享参数(页面截图) <button class="bottom_right" id="shareBt_{{item.igp_id}}" data-igp_id="{{item.igp_id}}" open-type="share" data-group_id="{{item.group_id}}"> <image src="https://shop.udaer.net/mini_images/find_oprate_bt_icon_02.png" mode="widthFix"></image>分享接龙 </button> [图片] [图片][图片]
2021-03-17 - 调用最新的wx.getUserProfile接口时没有任何反应?
在微信开发者工具中调用了wx.getUserProfile接口时没有任何的反应,开发者工具的版本是1.05.2103042,基础库是2.15.0,也试过了使用wx.getSetting来授权,授权结果返回scope.userInfo:true,调用wx.getUserProfile接口还是没有任何反应,也没有报错,也没有数据返回 wx.getUserProfile({ lang: "en", success(res) { console.log(res.userInfo) } }) wx.getSetting({ success (res){ console.log(res.authSetting) if (res.authSetting['scope.userInfo']) { // 已经授权,可以直接调用 getUserInfo 获取头像昵称 wx.getUserProfile({ success: function(res) { console.log(res.userInfo) } }) }else{ console.log(123) } } }) //最终返回的结果是: //{scope.userInfo: true, scope.address: true, scope.invoice: true, scope.invoiceTitle: true}
2021-03-05 - view与view之间或者image与image之间总是会有缝隙?
view之间行与列之间都会有大约1rpx左右的缝隙,在安卓手机上尤为明显,苹果手机适配的比较好,安卓手机是各种各样的缝隙。 如图所示: [图片] 详情请看下面代码片段 https://developers.weixin.qq.com/s/hbqTMImL7TnU
2021-01-29