- 关于云开发计费方式调整-测试环境是否需要收费?
我有两个环境,一个用于开发测试,一个是生产环境,目前开发测试环境使用的是免费套餐,够用了。生产环境已经切换到基础套餐+超出按量付费。 请问,计费方式调整以后,是不是开发测试环境也必须使用付费套餐,没有免费套餐了,对吗?
2022-10-20 - 在云函数中可以调用fs.readFile和fs.writeFile来读写文件吗?
在云函数中可以调用fs.readFile和fs.writeFile来读写文件吗? 我试了一下,报错如下: 日志 START error when writing file: { "errno": -30, "code": "EROFS", "syscall": "open", "path": "/var/user/node_modules/ffprobe-static/bin/linux/x64/temp.mov" }
2021-11-23 - 哪个接口可以实时获取“今日活跃用户”?
云开发控制台中可以实时查看“今日活跃用户”,如下图。请问各位大师,调用哪个接口可以获取这个数据呢? [图片]
2021-09-29 - 可以获取到用户进入小程序时所搜索的关键字吗?
当场景值scene为1005或1006时,说明用户是通过搜索进入小程序的。那么,可以获取到用户进入小程序时所搜索的关键字吗?如果可以,如何获取呢?
2021-08-16 - 如何在web-view的html中调用云函数?
请问各位大神,如何在web-view里面的html中调用云函数? 是通过微信jssdk调用,还是直接调用云开发 HTTP API,还是有其他更合适的方法?
2021-08-14 - 云函数报错 {"errorCode":1?
最近我的一个云函数偶尔会报如下错误: {"errorCode":1,"errorMessage":"user code exception caught","stackTrace":"null","statusCode":430} 最近一次报错的Request ID: f01ef1a6-d4e5-11eb-a27b-5254004a0d1c 请问这是我代码的问题,还是系统的bug呢?
2021-06-24 - 不支持npm模块nodejieba
复现错误过程如下。 新建一个云函数test, index.js代码如下:// 云函数入口文件 const cloud = require('wx-server-sdk') cloud.init() var nodejieba = require("nodejieba") // 云函数入口函数 exports.main = async (event, context) => { var result = nodejieba.cut("南京市长江大桥") console.log(result) } 2. 命令行下,切换到test目录,执行命令:npm install nodejieba npm安装成功,日志如下: ..\cloudfunctions\test>npm install nodejieba > nodejieba@2.5.2 install ..\cloudfunctions\test\node_modules\nodejieba > node-pre-gyp install --fallback-to-build [nodejieba] Success: "..\cloudfunctions\test\node_modules\nodejieba\build\Release\nodejieba.node" is installed via remote npm notice created a lockfile as package-lock.json. You should commit this file. npm WARN test@1.0.0 No description npm WARN test@1.0.0 No repository field. + nodejieba@2.5.2 added 58 packages from 96 contributors and audited 58 packages in 74.521s 3 packages are looking for funding run `npm fund` for details found 0 vulnerabilities 3.在开发工具中点击“上传并部署:云端安装依赖” 4.执行云函数test 5.此时报错,找不到模块nodejieba: {"errorCode":-1,"errorMessage":"Runtime.ImportModuleError: Error: Cannot find module '/var/user/node_modules/nodejieba/build/Release/nodejieba.node'\n at Object.module.exports.load (/var/runtime/node10/UserFunction.js:35:13)\n at Runtime.handleOnce (/var/runtime/node10/Runtime.engine.js:97:38)\n at Timeout.setTimeout [as _onTimeout] (/var/runtime/node10/Runtime.engine.js:54:12)\n at ontimeout (timers.js:436:11)\n at tryOnTimeout (timers.js:300:5)\n at listOnTimeout (timers.js:263:5)\n at Timer.processTimers (timers.js:223:10)","statusCode":443} 请问如何才能让云函数支持npm模块nodejieba呢?
2021-06-04 - 云函数中的aggregate可以传入allowDiskUse:true吗?
今天在云开发控制台执行了以下命令: db.collection('level') .aggregate() .group({ _id: { STCD: '$STCD', observe_date: '$observe_date', level: '$level'}, count: $.sum(1) }) .match({count:_.gt(1)}) .count('total') .end() 其中level集合中的数据有200万条。 返回错误如下: 执行失败,耗时 918ms Error: FailedOperation, (Location16945) Exceeded memory limit for $group, but didn't allow external sort. Pass allowDiskUse:true to opt in. (9ec19174-c089-496a-bd75-babf516512e5) 错误提示是很明确的,内存不够了。需要使用磁盘。 请问aggregate()能否传入allowDiskUse:true作为参数呢?
2021-05-12 - 在云函数中使用downloadFile会消耗CDN流量吗?
我今天在云函数中调用clou.downloadFile,结果消耗了大量的CDN流量。不是说在云函数中访问云存储中的文件不消耗CDN流量吗? 调用代码是这样的,很普通: cloud.downloadFile({ fileID: fileid, }) 文件已经提前上传到云存储中了,有1000多个文件,每个文件有800K左右。总共进行了2000多次的downloadFile操作,就把一个月的CDN流量用完了。 [图片]
2021-05-11 - 小程序中可以使用百度卫星地图吗?
目前百度地图的微信小程序API中暂不支持访问卫星地图,但是基于浏览器的JavaScript API是支持的。 请教一下各位大神,能否通过自己修改百度微信小程序API的方式来访问百度卫星地图?
2020-09-03