- 微信获取运动步数,有时候返回为0
uni.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 - 小程序允许授权后不能再次拉起多次授权弹框?
小程序允许授权后不能再次拉起多次授权弹框?
2019-09-20 - 审核未通过?
[图片]
2019-09-18 - 关注公众号的小程序必须是发布了的吗
- 关注公众号的小程序必须是发布了的吗? - 希望提供的能力
2019-06-14 - 小程序分包加载canvas在分包页面不显示
- 当前 Bug 的表现(可附上截图) 从主包进入分包 canvas的js正常运行,可是分包页面不显示绘制路径 如果直接进入分包页面,就正常;或者把此分包页面放入主包进行页面跳转加载也正常 - 预期表现 从主包进入分包 canvas分包绘制路径正常显示 - 复现路径 - 提供一个最简复现 Demo
2019-05-13 - 怎么在wxml页面中进行字母大写转换
- 怎么在wxml页面中进行字母大写转换 - 或者通过过滤器也行
2018-11-16 - 小程序获取二维码带的参数sence
- 小程序获取二维码带的参数scene - 比如:首页是index.js,二维码的参数是 "scene" : "id=171003&tyid=1","page" : "pages/article/article" 那么我是在index.js里面获取scene参数呢,还是在article.js里面获取scene参数呢,还是两个都可以
2018-11-07 - onShareAppMessage转发里面怎么加载自定义图片
- 在点击这个按钮的时候 先检查是否已经生成完 * 没有就转圈圈 最多等5秒,然后每1秒都检查一下是不是生成了,生成了就调用 onShareAppMessage * 有就调用 onShareAppMessage - 在点击转发按钮后还能加载自定义的图片,或者等图片生成完后再进行转发,不能隐藏转发按钮来实现
2018-11-05