- scroll-view skyline异常报错?
[图片] 切换为兼容模式就显示正常,一切换到skyline渲染模式就报这个异常,也不显示具体错在什么地方
2023-10-25 - wx.createSelectorQuery() 获取长列表高度的返回值都是同一个?
在进行类似聊天上滑分页取每一页高度的时候返回的值都是第一页的高度 [图片] // 设置每一页的高度 setPageHeight(page){ const _this = this; setTimeout(function() { let node = wx.createSelectorQuery().select(`#item${page}`) node.boundingClientRect(rect => { if (!rect) return // 更新对应页数高度 _this.pageHeight[page] = rect.height console.log('_this.pageHeight: ', JSON.stringify(_this.pageHeight)) }).exec() }, 100) }, // 上滑获取分页数据 msgList为二维数组 [[],[],[]] //currentPage 当前页 msgList.unshift(result) _this.setData({ toView: _toViewId, msgList },() =>{ _this.setPageHeight(currentPage - 1) })
2022-12-07 - 云开发通过时间戳按月统计时出现的奇怪问题?
//此处两个时间戳转化为时间是 2022-01-01 00:00:00 2022-12-31 23:59:59 match.createTime = _.and(_.gte(1640966400000), _.lte(1672502399000)) const result = await collection .aggregate() .match(match) .project({ year: $.dateToString({ format: '%Y-%m', date: $.add([new Date(0), '$createTime']), }), }) .group({ _id: `$year`, value: $.sum(1), }) .sort({ _id: -1, }) .limit(35) .end() 此处返回的应该是从2022年一月开始到年末按照月份统计的数据 但是在返回体中却出现了2021年12月的统计数值 { "requestId": "183bb7768df_2", "data": [ { "_id": "2022-10", "value": 861 }, { "_id": "2022-09", "value": 3182 }, { "_id": "2022-08", "value": 3107 }, { "_id": "2022-07", "value": 3111 }, { "_id": "2022-06", "value": 2804 }, { "_id": "2022-05", "value": 2891 }, { "_id": "2022-04", "value": 2331 }, { "_id": "2022-03", "value": 2611 }, { "_id": "2022-02", "value": 3456 }, { "_id": "2022-01", "value": 4394 }, { "_id": "2021-12", "value": 15 } ] }
2022-10-09 - 云开发Group如何按照不同时间戳分组进行Count统计?
需求是将不同时间注册的用户按照createTime时间戳区分不同月份进行统计展示柱状图。 [图片] 想要的效果如下 list = [ { _id: "xxxxxx", month: 1, total: 231 }, { _id: "xxxxxx", month: 2, total: 231 }, { _id: "xxxxxx", month: 3, total: 231 } ]
2021-11-03 - 小程序MP管理后台月活跃用户数没有了?
[图片] 以前这里是有月活跃用户数指标选项的
2021-01-04 - 云函数canvas依赖安装完成无法运行?
Error: errCode: -404011 cloud function execution error | errMsg: cloud.callFunction:fail requestID f1ba4937-6434-11ea-a31b-525400235f2a, cloud function service error code -504002, error message Cannot find module '../build/Release/canvas.node'; at cloud.callFunction api;
2020-03-12 - 使用扫码api会进入设置页面
- 当前 Bug 的表现(可附上截图) [图片][图片] - 预期表现 扫码成功后,进入权限设置页面 - 复现路径 - 提供一个最简复现 Demo wx.scanCode({ onlyFromCamera: true, success(res) { console.log(res) if (res.errMsg == "scanCode:ok"){ wx.navigateTo({ url: '/pages/identity/identity', }) } } })
2018-12-13 - 多次审核不过审,并且都是同一个原因
多次修改审核都提示一个审核不过审原因: 不可以借助其他小程序或app实现自身功能体验
2018-05-02