- 关于云托管是否支持http2的问题?
看云托管的文档 // 返回值同 wx.request const res = await c1.callContainer({ path: '/container-helloworld', // 填入容器的访问路径(云托管-服务列表-路径) // 其余参数同 wx.request method: 'POST', }) 是通过http调用服务的,但是不知道内部实现是否支持http2,比如头部压缩,对于多人在线的小游戏来说,网络资源太宝贵了,如果不支持http2的头部压缩的话,会浪费大量网络资源
2021-03-25 - 云数据库基于Mongodb,为什么不支持更新数据后,返回更新后的数据?
现在云数据库更新后只返回更新数据的条数,不能做到像mongodb一样可以返回更新后的数据,这个功能在高并发的场景非常有用,比如每次操作都对一个字段增加固定的量(inc操作),但是我并不知道更新后的值是多少,如果再次去查的话,在高并发的场景下,可能查到的是经过别的请求更新过n次的值,不是我想要的值,这时候如果更新操作能返回更新后的值,就非常有用
2020-07-28 - wx.navigateTo函数,为什么在苹果真机调试中无法传递数据?
跳转事件: onCommodityTap(){ wx.navigateTo({ url: '../../pages/compnent/compnent', success: (res) => res.eventChannel.emit('onDataArrive', {commodityInfo: this.data.commodityInfo}) }) } 目的页面: let commodityInfo; this.getOpenerEventChannel().on('onDataArrive', data => { commodityInfo = data.commodityInfo; }); console.log('commodityInfo:', commodityInfo) 开发工具: [图片] 安卓真机: [图片] 苹果真机: [图片]
2020-04-30 - 云开发是否支持跨云函数的全局global这样的对象,可以跨云函数存取数据?
如题
2020-04-06 - 开发工具云函数本地调试?
云函数本地调试,手动请求正常[图片] 开发工具请求提示找不到函数,[图片] 而且面板上的按钮都无法点击[图片] 关闭本地调试,取消或开启文件变更自动重载都会报这个错,太难用了[图片]
2020-03-31 - 云数据库HTTP API插入数据,数据插入成功,返回信息报错
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-http-api/database/databaseAdd.html 如题:数据已经成功插入到集合中,但是返回信息报错,报错如下: {"errcode":-1,"errmsg":"system error hint: [hKLFH.wgE-eZHfYa]"}
2019-12-24 - BUG,云数据库,通过HTTP API调用查询,涉及聚合时报错
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-http-api/database/databaseQuery.html 当查询串涉及到Aggregate时报错,报错信息如下: {"errcode":-605101,"errmsg":"RuntimeError: cannot get property 'aggregate' (at line 1, col 27) hint: [fcN8ra05642028]"
2019-12-06 - BUG,云数据库,通过HTTP API调用查询,涉及聚合时报错,官方能出来说明下情况吗?
查询语句:db.collection('commodity').aggregate().match({"key":22}).end() 报错信息:{"errcode":-605101,"errmsg":"RuntimeError: cannot get property 'aggregate' (at line 1, col 27) hint: [fcN8ra05642028]"}
2019-12-06 - 通过HTTP API调用云端数据库,聚合功能报错?
查询语句:db.collection('commodity').aggregate().match({"key":22}).end() 报错信息:{"errcode":-605101,"errmsg":"RuntimeError: cannot get property 'aggregate' (at line 1, col 27) hint: [fcN8ra05642028]"} 请问下是通过HTTP API调用,不支持聚合功能吗
2019-12-06