- 使用云开发可以把静态资源传到腾讯COS存储桶吗?
如题。 现在使用云开发,觉得不用后端很方便,但又想用腾讯的海外加速,查了下,海外加速需要把静态资源放进COS再对其加速。那么云开发的话可以配合COS一起吗? 谢谢!
2020-03-25 - 云开发 多图上传 进度无法对应?
使用云开发上传多个图片,希望每个图片独立显示上传进度,但是进度永远只在图片数组最后一个的里面更新,这是为什么? data: { // ... uploadImages: [], } user.chooseImage({ count: count, sizeType: ['compressed'], sourceType: ['album', 'camera'], }) .then(res=>{ // 开始遍历 for (var index in res.tempFilePaths) { var array = { 'path': res.tempFilePaths[index], 'progress': 0 } that.data.uploadImages[index] = array const filePath = that.data.uploadImages[index].path const cloudPath = 'post-images_' + app.globalData.openid + '_' + common.getUniqueCode(new Date()) + '_' + index + filePath.match(/\.[^.]+?$/)[0] var uploadTask = wx.cloud.uploadFile({ cloudPath, filePath, success: res => { console.log('上传成功', res.fileID) } }) uploadTask.onProgressUpdate((res) => { // 把进度数据放入uploadImages数组 that.data.uploadImages[index].progress = res.progress // 打印结果永远是最后一个数组对象更新progress,前几个progress一直都是0 console.log('progress: ', that.data.uploadImages) that.setData({ uploadImages: that.data.uploadImages }) }) } })
2020-01-25 - 调用每个page的data里的变量问题?
我发现一个很奇怪的事,不知是不是bug。 比如每个page里的data是 data:{ userInfo: {}, tempImageQty: 0, } 那么我在一个函数里给这俩变量赋值时 onUpdate: function() { var that = this // ... 打个比方在这获得了用户数据res that.data.userInfo = res.userInfo // 这是没问题的 that.userInfo = res.userInfo // 没报错,能打印出值,但是that.userInfo不是data里的userInfo,那这个userInfo是指向哪的? that.tempImageQty = res.userInfo.length // 这是没问题的 that.data.tempImageQty = res.userInfo.length // 这里的that.tempImageQty会出现值为undefined } 谁知道这是怎么回事呢?
2020-01-21 - 代码缩进快捷键不能用
https://developers.weixin.qq.com/miniprogram/dev/devtools/download.html mac版本不能使用代码缩进的快捷键。
2020-01-21 - 云开发数据库权限让我很疑惑?
云开发数据库小程序端的权限让我很疑惑,有没有大神能解释下? 权限角色分为用户、创建者和管理员,按照小程序端为普通用户权限,云函数端为服务器即管理员权限。那么,如果数据库权限为所有用户可读,仅创建者和管理员可写的话,为啥用小程序端的数据库API也能写入数据??还是说小程序端可以自动判断用户是否为管理员? 还是说,普通用户能写入初始数据,即新用户注册,自动写入openid或unionid,但对于其他用户的数据只能读? 谢谢!
2020-01-18 - 云函数uploadFile不能上传本地图片到云存储?
官方文档里介绍服务器端uploadFile API不能上传本地图片,哪里有详细的介绍? 官方文档地址 https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/storage/uploadFile/server.uploadFile.html 我找到有相同问题的帖子 https://developers.weixin.qq.com/community/develop/doc/000824ee3c0e60190c484155f56400?highline=云函数%20上传本地图片 有没有大神有解决方案? 谢谢!
2020-01-17 - wx.getFileSystemManage.readFile报错?
在选择图片后使用wx.getFileSystemManage.readFile转化base64是出现报错:VM22195:1 readFile:fail parameter error: parameter.filePath should be String instead of Undefined 实在想不通啊! 代码如下: user.chooseImage({ count: 1, sizeType: ['compressed'], sourceType: ['album', 'camera'], }) .then(res=>{ // 选择图片成功,开始上传 // 这里res是可以打印出来的 console.log(res) //var filePath = res.tempFilePaths[0] return user.getFileSystemManagerReadFile({ filePath: res.tempFilePaths[0], // 这里出现问题 encoding: 'base64' }) }) .then(res=>{ console.log('base64', res) }) .catch(err=>{ console.log('头像更新错误:', err) })
2020-01-16 - 可不可以多个exports放在一个云函数里?
每次新建云函数时都是以exports.main开头,但是看到官方文档有介绍插入数据库云函数是exports.add开头,是不是可以把多个exports放在同一个云函数里呢? 比如云函数名为database.js 里面可以有exports.add, exports.get 等等?可以的话应该怎么做? 谢谢
2020-01-15 - 云开发是不是和腾讯云阿里云一样有海外CDN加速?
如题,基于微信云开发的小程序有海外CDN吗? 或者套餐里CDN的收费是包括海外CDN的吗? 谢谢!
2020-01-06 - 远程仓库不能推送拉取?
新建远程仓库,初始化完毕,但是推送和拉取都出现 网络认证错误,请问在哪里查看或设置网络认证信息?
2019-11-30