首页 > TAG信息列表 > cloudPath

uniapp云存储{"errMsg":"cloudPath不合法"}

上传图片到云存储。 uni.chooseImage({ count:1, success:res=>{ this.src=res.tempFilePaths[0] console.log(res.tempFilePaths[0]) uniCloud.uploadFile({

uni-app 关于uploadFiles API的小坑 (cloudPath不可为空)

最近在写uni-app的新闻资讯项目,涉及到其中的最普普通通的图片上传功能。 参考官方文档  我客客气气的把 uni.chooseImage 传回来的图片路径和图片名称分别传给了 filePath 和 cloudPath uni.chooseImage({ count:count, success:(res) => { // console.log(r

微信小程序常见排坑

一:真机调试报MiniProgramError U.createEvent is function 已知解决方式之一:     检查你的index.js文件,看是否有以下自动生成的代码,或者全局搜索(wx.hideLoading()): doUpload: function () { // 选择图片 wx.chooseImage({ count: 1, sizeType: ['compress

微信小程序 云开发 WeUI组件Uploader 报错upload file fail, urls not found

上传到云存储的方法 function uploadFile(cloudParentPath, filePath){ var temps = filePath.split('.') var cloudPath = cloudParentPath + app.globalData.openid + '_' + new Date().getTime() + '.' + temps[temps.length -1] console