- 云服务服务端报错 URL is not defined?
在微信云使用如下代码,但是云服务报错 URL is not defined。我查看 nodejs 版本是 Nodejs8.9。我查 nodejs 文档 URL 在 nodejs v7.0.0 和 v6.13.0 支持了,为啥微信云不支持呢? [图片] const myURL = new URL('/foo', 'https://example.org/');
2023-03-03 - 云函数调用提示资源请求达到了限制,但是从数据看并没有?
你好,我调用云函数提示我如下报错:Error: errCode: -404011 cloud function execution error | errMsg: cloud.callFunction:fail requestID , cloud function service error code -501003, error message Request exceeded the limit; at cloud.callFunction api; 但是从资源限额来看并没有达到限制呀,麻烦帮忙解答下。 [图片]
2023-03-01 - 微信云导入数据库异常?
async function writeDB() { const url = "https://api.weixin.qq.com/tcb/databasemigrateimport?access_token=xxx"; const abc = { "env": "xxx", "collection_name": "school-hourse", "file_path":"/temp/2133000963/equal/2300011379.json", "file_type":1, "stop_on_error": false, "conflict_mode": 2 } const abcd = await newRequest({ url: url, method: "POST", json: true, headers: { "content-type": "application/json", }, body: abc }); const {errcode, job_id} = abcd.body; if (errcode === 0) { setTimeout(async () => { // 查询任务状态 const jobUrl = "https://api.weixin.qq.com/tcb/databasemigratequeryinfo?access_token=xxx"; const jobResult = await newRequest({ url: jobUrl, method: "POST", json: true, headers: { "content-type": "application/json", }, body: { env: "xxx", job_id } }); console.log('jobResult', jobResult.body) }, 2000) } } 需求:利用云函数导入位于云存储中的csv文件至云数据库中。post 方法调用 "https://api.weixin.qq.com/tcb/databasemigratequeryinfo?access_token=xxx",相关参数是正确的,但是会报如下的错误。麻烦帮忙看下,当前卡在这里了。 具体报错:“导入数据任务(id:6528678)异常,错误信息:导入文件大小为0,请确认文件是否正确或文件在cos中权限是否正确” { errcode: 0, errmsg: 'ok', status: 'fail', record_success: 0, record_fail: 0, error_msg: '导入数据任务(id:6528678)异常,错误信息:导入文件大小为0,请确认文件是否正确或文件在cos中权限是否正确', file_url: '' }
2023-02-28