- 多点触控被打断不触发bindtouchcancel
复现步骤:将两个view绑定bindtouchstart、bindtouchcancel、bindtouchend后同时点击,然后下拉通知栏。 触发bug:两个view都能触发bindtouchstart。但是下拉通知栏后,只有先点击的那个view会触发bindtouchcancel,另一个会保持点击状态。 复现视频:http://file.campuspass.cn/download?fileId=AyEVUUxb207UgG2wCU9W
2022-11-02 - 云托管部署时安装numpy时Connection reset by peer?
环境id:env01-9ghwefune3d6242e;服务名称:flask-oydh;版本:flask-oydh-015;状态:构建失败 [图片] [图片]
2022-09-10 - 内容管理中 markdown 控件不显示?
[图片] 富文本能正常使用,markdown加载不出来。更换多款浏览器一样的效果。
2022-05-07 - 微搭是免费商用吗?
微搭是免费商用吗?[图片]
2022-04-14 - 云函数上传文件报错@cloudbase/node-sdk文件中的url未定义?
云函数API:cloud.uploadFile() 在执行云函数时,报错信息如下: 读取失败 Error: cloud.callFunction:fail Error: errCode: -504002 functions execute fail | errMsg: TypeErruploadFile:fail or: uploadFile:fail Cannot read property 'token' of undefined at Object.uploadFile (/var/user/node_modules/@cloudbase/node-sdk/lib/storage/index.js:32:21) at processTicksAndRejections (internal/process/task_queues.js:97:5) at async Object.uploadFile (/var/user/node_modules/wx-server-sdk/index.js:703:17) at async /var/user/node_modules/wx-server-sdk/index.js:2784:32 (callId: 1636300153341-0.19951325707361667) 已经尝试 npm i @cloudbase/cli@latest -g --registy https://registry.npm.taobao.org/ 也尝试过重新安装依赖,没有效果 源文件如下: //4,把excel文件保存到云存储里 let res = await cloud.uploadFile({ cloudPath: 'test.xlsx', // cloudPath: dataCVS, fileContent: buffer, //excel二进制文件 }) return res 也扒过 @cloudbase/node-sdk/lib/storage/index.js 文件,源代码如下: async function uploadFile(cloudbase, { cloudPath, fileContent }, opts) { const { data: { url, token, authorization, fileId, cosFileId } } = await getUploadMetadata(cloudbase, { cloudPath }, opts); //*****就在这里的url报错,显示未定义***** const formData = { Signature: authorization, 'x-cos-security-token': token, 'x-cos-meta-fileid': cosFileId, key: cloudPath, file: fileContent }; let body = await new Promise((resolve, reject) => { request_1.default({ url, formData: formData, method: 'post' }, function (err, res, body) { if (err) { reject(err); } else { resolve(body); } }); }); }),
2021-11-08 - doc.update().then()无法更新且其中的then函数不执行?
db.collection(name).doc(this.cloudHaveData).update({ data: { shareTTDR: shareTTDR, timeList: timeList, } }).then(res => { console.log(res) this.addDone() }) 没有任何返回数据,云数据库也没有更新,电脑上一切正常,真机调试和预览都会卡在这里。 今天上午之前还可以正常使用,全程没有修改,下午就有用户反馈有问题。 查了一下,都说是数据库没有openid,但是我的有openid,而且访问权限都为true
2021-10-10