楼主最后怎么做的?上传至云端大小会变还是1m以上也可以检测?
iOS端中security.imgSecCheck接口报错data exceed max size?在开发工具中不会出现,真机,手机预览测试都会出。 imgSecCheck接口传的是base64,大小确定在1M以下仍然无法进行下去,而且不会走fail回调。 目前只能先上传至云端,然后传url进行检测,比较耗费时间,希望官方能解决下
2021-01-23到底会还是不会啊,有没有大神解答一下
云函数先返回了,未完成的异步操作会执行完毕么?云函数里,主线任务已经完成,为了API更快 return,可以不 await 支线异步任务么。 这样的场景很多,比如假如哈,打个日志或者做个统计,Api没必要等待这个次级任务Promise完成,提前返回了。 这样操作有啥影响么。
2020-06-17确定不支持了吗? 研究了半天的聚合写第一个函数就凉了?
lookup的pipeline不能正常工作https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/database/aggregate/Aggregate.lookup.html 描述:在数据库里执行“高级操作”,里面想测试lookup语句,按照示例写了pipeline语句,但是执行失败,报错显示$.pipeline() 的写法是错误的,不知道该怎么修正 db.collection('schedule') .aggregate() .lookup({ from:'teacher', localField: 'teacher', foreignField: '_id', as: 'teacherList', }) .lookup({ from: 'class', let: { schedule_teacher: '$teacher', schedule_monday: '$monday', }, pipeline: $.pipeline() .match( _.expr($.and([ $.eq(['$teacher', '$$schedule_teacher']), $.eq(['$monday', '$$schedule_monday']) ])) ) .project({ _id: 0 }) .done(), as: 'classList', }) .end() RuntimeError: cannot read property 'pipeline' (from line 16, col 17 to line 16, col 25) 14 | schedule_monday: '$monday', 15 | }, > 16 | pipeline: $.pipeline() | ^^^^^^^^ 17 | .match( 18 | _.expr($.and([ 19 | $.eq(['$teacher', '$$schedule_teacher']),
2020-06-08