遇到类似问题
useExtendedLib和lazyCodeLoading同时设置会导致页面空白?useExtendedLib和lazyCodeLoading同时设置,iOS手机每天首次启动,页面中的weiui组件都不显示,会导致基础库崩溃,开发后台能查到大量的如下基础库错误,安卓手机没发现问题 Can\'t find variable: setCssToHead_wxfa43a4a7041a84de global code@https://servicewechat.com/preload/page-frame.html:57:477
2022-03-24//这个例子有导出图片功能 const xl = require('excel4node') exports.main = async (event) => { // create a new instance of a Workbook class const wb = new xl.Workbook() // cdd Worksheets to the workbook const ws = wb.addWorksheet('列表') { //for循环填充行列数据i和j,自己编吧,这里仅用花括号意思一下 //i循环里,设定行高,控制图片显示大小 ws.row(i + 1).setHeight(65) //j循环里,把图片插在第一列 let res = await cloud.downloadFile({ fileID }) let image = res.fileContent ws.addImage({ image, type: 'picture', position: { type: 'twoCellAnchor', from: { col: j + 1, colOff: 0, row: i + 1, rowOff: 0, }, to: { col: j + 2, colOff: 0, row: i + 2, rowOff: 0, }, }, }) } const buffer = await wb.writeToBuffer() const resFile = await cloud.uploadFile({ cloudPath: cloudPath, fileContent: buffer }) }
云函数如何使用npm:excel4node 导出带图片excel?npm地址:https://github.com/natergj/excel4node 欢迎指教,拜谢大佬~
2022-03-23如果main函数里没有写return,并且执行过程正确无误,就是你发的这个返回结果:null。
云开发报错信息看不明白?日志内容 Request ID: 0c77c565-92bc-4640-8735-6b4f8e07260c 执行时间: 5ms内存使用: 20.69 MB 返回结果 null 日志 START event : { "method": "getPending", "params": { "mid": "bf4a0bf261ffdef90cb4231e06bd2b02", "orderStatus": "pending", "status": "YIZHIFU" } } {"traceId":"625026dcd02e401e89fc742ccdb35404","functionName":"webborder","childOf":"","errorMessage":"","errorCode":"","source":"web_client","invoker":"b698c735e0c2466c8b178d027953e1cf","ua":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36","invokerIp":"114.216.223.60","spanId":"9e9f0576a8b01901","service":"function","startTime":"1647769524044","endTime":"1647769524155","event":"InvokeFunction","timeCost":"111","seqId":"cb4cff993640e"} REPORT RequestId:0c77c565-92bc-4640-8735-6b4f8e07260c Duration:5ms Memory:256MB MemUsage:20.688263MB END --- errorCode errorMessage 都没有,这到底是哪里有问题?
2022-03-20https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/database/security-rules.html
collection().watch如何监听不是自己openid的数据?collection().watch如何监听不是自己openid的数据呀,在云函数里面写不了的[图片][图片][图片]
2022-03-20const _ = db.command const $ = db.command.aggregate var result = await db.collection('animal').aggregate() .lookup({ from:'order', let:{ animal:'$_id' }, pipeline:$.pipeline().match(_.expr($.and([ $.eq(['$goods_id','$$animal']), $.gte(['$state',1]), $.lte(['$state',3]) ]))).project({ _id:0 }).done(), as :'percent' }) .addField({ size: $.size('$percent') }) .end() return result
云开发联表查询怎么把查询到数据计数?const _ = db.command const $ = db.command.aggregate var result = await db.collection('animal').aggregate() .lookup({ from:'order', let:{ animal:'$_id' }, pipeline:$.pipeline().match(_.expr($.and([ $.eq(['$goods_id','$$animal']), $.gte(['$state',1]), $.lte(['$state',3]) ]))).project({ _id:0 }).done(), as :'percent' }).end() return result 怎么把percent计数 count()在这里怎么用
2022-03-20能
小程序迁移后,二维码问题?关于小程序迁移,从小程序A迁移到小程序B,迁移之前,小程序A的二维码已经向用户投入使用,迁移完成后,用户扫描A的二维码能否打开小程序B?
2022-03-18第一步,找到id为3的记录,得到price为7。 第二步,统计price大于7的记录数,记录数就是名次。 db.collection('table').where({ price: _.gt(7) }).count()
请问云数据库中应该如何得到某条记录在集合中的名次?比如我有这样一个集合: {id: '1', price;10}, {id: '2', price: 4}, {id: '3', price: 7}, {id: '4', price: 9} 我想查询根据price降序排序时,id为'3'的记录在第几个,请问应该如何查询?
2022-03-13https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/signature.html 方式二:云调用直接获取开放数据(云开发)
云开发“原生打通微信开放能力”怎么理解?对于这句话的具体意思不是很理解,有没有大神可以举例解释一下
2022-03-12_openid的权限问题?
对象数组 使用 elemMatch + _.and 查询结果为空(不正确)1 测试数据 及 查询代码 {"_id":"5b049cc8622b232d102331c1093008a3","array":[100.0,200.0],"a2":[{"price":10.0}]} {"_id":"bf4a0bf2622b237613f4e3a416172934","array":[60.0,80.0],"a2":[{"price":100.0}]} db.collection("test") // 返回 a2数组中 匹配 price 大于等于10且小于等于100 的记录 .where({ a2: _.elemMatch({price:_.and(_.gte(10), _.lte(100))}) }) .get() 2 微信开发者工具上查询能返回正确结果 [图片] 3 腾讯云-云开发 控制台 及 云函数上相同的代码 返回为空 [图片] wx-server-sdk : 2.6.0 云函数版本node12
2022-03-12let openid = cloud.getWXContext().OPENID
云开发聚合问题,在聚合阶段怎么去访问外面的变量那?[图片] 我在聚合里面,拿不到外面的openid,请问有没有办法那?
2022-03-02