- 云数据库嵌套数组元素增/删(3+层嵌套)?
请教 我的集合如下结构,数组嵌套了 3 层(我的集合有多条记录),现在我需要对第 3 层的数组进行 push、pull 操作,请问代码我该怎么写(目前云开发数据库跟 MongoDB 还是有一定上的差异)? { _id: 'serial_id', nodes: [ _id: 'serial_id_a', text: 'label', nodes: [ _id: 'serial_id_b', text: 'label', nodes: [ _id: 'serial_id_c', text: 'label' ] ] ] }
2020-07-24 - 云开发 - 存储 - 文件下载地址会过期吗
- 当前 Bug 的表现(可附上截图) 使用了云开发存储的文件下载地址展现图片,在【开发工具】、【浏览器】访问图片正常显示,在手机上不显示,请问文件下载地址会过期是吗? - 预期表现 文件下载地址永久有效 - 复现路径 - 提供一个最简复现 Demo
2019-05-30 - 独立分包,能正常用 require 吗?
- 需求的场景描述(希望解决的问题) 我对 pages/rabbit 做独立分包加载,该独立的包下有 utils/cache.js、utils/cache.mgr.js 文件,我在 Page require utils/cache.mgr.js 没问题,但如果在 utils/cache.mgr.js 再 require utils/cache.js 就会抛错,错误提示:module xxx is not defined, 用开发工具的模拟器没有问题、真机 Remote debug 也没问题,常规真机 Preview 就提示抛这样的错,这样的场景 require 是否支持? [代码]├── app.js ├── app.json ├── app.wxss ├── moduleA │ └── pages │ ├── rabbit[代码]│ └── utils │ ├── cache.js │ ├── cache.mgr.js - 希望提供的能力
2018-12-25 - 小程序云开发 Collection 如何获取指定的 field ,有 where
- 当前 Bug 的表现(可附上截图) Collection.field 使用问题,如下代码,我期望结果只返回 description、done、progress 这 3 个 field, 不加 where 条件时结果符合预期,但如果加了 where 条件,便返回了全部的 field,我该怎么做?这是我使用不当,还是 BUG? const db = wx.cloud.database() db.collection('todos').field({ description: true, done: true, progress: true }) .get() .then(console.log) .catch(console.error);
2018-11-20