- wx.agentConfig 签名错误 40093 ?
[图片][图片][图片] 我蒙了,我错哪了
2022-11-09 - 微信浏览器授权获取code的流程?
scope参数错误或没有授权,我蒙了,第一次开发这个,官方文档不顶用,微信浏览器还没有控制台
2022-07-18 - 图片大小5.1MB的话,页面加载慢,如果手机差一点会出现闪退,请问有什么解决方法
参考 优踏体测 小程序详情页;出现这个问题
2022-02-23 - 今天这个api没有反应,我通过console.log打桩,出来了,api没反应
console.log(123) let that = this; wx.getUserProfile({ desc: "用于完善用户个人资料,开放功能权限!", success: function (res) { let { encryptedData, iv, userInfo } = res; wx.cloud.callFunction({ name: "healthweb", data: { type: 'quickLogin', encryptedData, iv, userInfo }, success: res => { let { data } = res.result; app.globalData["_user"] = data[0]; app.globalData["_userState"] = data.length == 1; if (data.length == 1) { let { actions } = that.data, { _user } = app.globalData, { nickName, avatarUrl } = _user; actions[0] = { name: "微信快捷登录", disabled: true } that.setData({ avatar: { nickName, avatarUrl }, actions }); Notify({ type: "success", message: nickName + " 登录成功!" }) } }, fail: () => wx.$error("快捷登录失败!") }) } }) console.log(456)
2021-11-25