到底为啥
微信获取运动步数,有时候返回为0uni.showLoading({ title: "同步中...", mask: true }) uni.login({ provider: 'weixin', success: function(loginRes) { let code = loginRes.code; myRequest({ url: "/wxminiprogram/miniAuth", method: "POST", urltype:2, data: { code: code } }) .then(res => { console.log(res); uni.setStorageSync('authToken', { token: res.data.data.authToken }); uni.setStorageSync('openid', { openid: res.data.data.openid }); uni.setStorageSync('userid', { userid: res.data.data.id }); uni.authorize({ scope: 'scope.werun', success() { wx.getWeRunData({ success(res) { console.log(res) // 拿 encryptedData 到开发者后台解密开放数据 const encryptedData = res.encryptedData const iv = res.iv generalRequest({ url: "/wxminiprogram/getWeRunData", method: "POST", urltype:"test", data: { encryptedData: encryptedData, iv: iv, openid: uni.getStorageSync('openid').openid } }) .then((res) => { console.log(res) let list = res.data.data.stepInfoList _this.werun_number = list[list.length - 1].step generalRequest({ url: "/carboncoindetail/save", method: "POST", urltype:"test", data: { behaviorType: 2, userId: uni.getStorageSync('userid').userid, step: list[list.length - 1].step // step:3001 } }) .then((res) => { uni.hideLoading() console.log("步数获取碳积分", res) if (res.data.code == 0) { _this.tanjifen = res.data.data _this.getBushuInfo() } else { uni.showToast({ "title": res.data.msg, "icon": "none", "duration": 3000 }) } }) .catch(err => { uni.hideLoading() throw Error(err) }) }) .catch(err => { uni.hideLoading() throw Error(err) }) }, fail(err) { uni.hideLoading() console.log(err.errMsg) } }) } }) }) .catch(err => { throw Error(err) }) //2.将用户登录code传递到后台置换用户SessionKey、OpenId等信息 }, fail: function(err) { console.log(err) }, });
2022-07-25[图片] 这样写?,我试了没用
怎么在wxml页面中进行字母大写转换- 怎么在wxml页面中进行字母大写转换 - 或者通过过滤器也行
2018-11-16那分享到朋友圈中图片里的菊花二维码的参数sence用&隔开行不行?
平台一个持续了半年未解决的BUG- 当前 Bug 的表现(可附上截图) 设置体验版,在路径后面添加参数,提交,此时支持返回的图是正常的,关闭二维码弹层,重新点击体验版查看二维码,发现路径上带上了amp;,并且每刷新一次多一个amp;扫码后解析参数解析的也是带amp的 [图片] - 预期表现 刷新页面,点击体验版,路径正常 - 复现路径 - 提供一个最简复现 Demo 平台 此bug于4月份提过,目前该问题仍然存在,下方链接参考4月提的问题 [BUG] 平台体验版扫码设置参数后,刷新后参数自动添加amp
2018-11-09好的,谢谢
小程序获取二维码带的参数sence- 小程序获取二维码带的参数scene - 比如:首页是index.js,二维码的参数是 "scene" : "id=171003&tyid=1","page" : "pages/article/article" 那么我是在index.js里面获取scene参数呢,还是在article.js里面获取scene参数呢,还是两个都可以
2018-11-07我想问下,获取scene参数是在对应的页面的onload里面获取还是在index.js里面获取
生成小程序二维码sence获取二维码生成了 但是 page中获取不到sence,纠结于是生成二维码的时候参数有问题 还是 在page中获取有问题,怎么判断问题所在
2018-11-07我是生成的canvas图片,但生成的时候需要点时间,可以在转发的过程中生成图片吗
onShareAppMessage转发里面怎么加载自定义图片- 在点击这个按钮的时候 先检查是否已经生成完 * 没有就转圈圈 最多等5秒,然后每1秒都检查一下是不是生成了,生成了就调用 onShareAppMessage * 有就调用 onShareAppMessage - 在点击转发按钮后还能加载自定义的图片,或者等图片生成完后再进行转发,不能隐藏转发按钮来实现
2018-11-05把cover-view的position改成fixed就行了,我的是这样的,根据不同的需求要不同的答案吧
安卓机cover-view无法覆盖ec-charts中的canvas页面index,做了自定义的底部tab,index页面加入了组件中,组件中使用了ec-charts,在安卓系统下无法底部tabbar无法遮住ec-charts中的canvas,但,IOS下正常 自定义tabbar如下: [图片] 异常结果如下: [图片]
2018-10-23