- updateAppMessageShareData没有执行,也没有报错,分享的设置没有生效?
let url = encodeURIComponent(window.location.href.split('#')[0]) window.jssdkSign(url, (res) => { console.log('微信配置信息', res) window.wx.config({ debug: false, appId: res.appId, timestamp: res.timestamp, nonceStr: res.noncestr, signature: res.signature, jsApiList: ['showMenuItems', 'updateAppMessageShareData'] }) window.wx.error(function (res) { console.error(res) }) window.wx.ready(() => { window.wx.showMenuItems({ menuList: ['menuItem:share:appMessage'], success: () => { console.log('menuItem:share:appMessage成功') this.updateShareInfo() }, fail: (err) => { console.error(err) } }) }) }) updateShareInfo () { let shareInfo = this.shareInfo window.wx.updateAppMessageShareData({ title: shareInfo.title, desc: shareInfo.desc, link: shareInfo.link, imgUrl: shareInfo.imgUrl, success: (res) => { console.log('分享朋友设置成功==' + res) }, fail: (err) => { this.wechatShare() console.error('分享朋友设置失败==' + err) } }) }
2021-08-24 - onMenuShareAppMessage相关success回调低版本sdk是否还能使用?
onMenuShareAppMessage在weixin-js-sdk 1.3.2这个版本的 success成功回调还能正常使用吗,另外如果手机客户端微信版本比较高的话,是不是不支持这个 success成功回调了?
2021-08-17 - scroll-view设定垂直滚动后,滚动到底部后出现大量空白高度。
[图片] <view style="height:100%;width:100%;"> <scroll-view scroll-y style="height:100%;background:#fff;"> <view class="itemper"> //列表重复内容 <view class="itemleft"> <view class="imagebox"> <image></image> </view> <text class="lefttext">augus</text> </view> <view class="itemright"> <text> 还差<text class="whatper ">1</text>人成团</text> <text class="wejoin ">我要参团</text> </view> </view> </scroll-view> </view> 预期滚动到底部之后,底部没有空白,如下图: [图片]
2019-04-26 - 小程序使用了插件的情况下,还能使用云函数吗
小程序使用了插件的情况下,还能使用云函数吗 [图片]
2019-04-23 - wx.makePhoneCall失效
wx.makePhoneCall,安卓手机端这个API失效,是什么问题啊
2017-10-27