- 真机调试显示禁止打开开发版?
真机调试出现禁止打开开发版进不了微信小程序界面,扫码调试也是一样,是不是登录功能的引用关系[图片][图片]
01-09 - 微信小程序输入框带图片上传功能,现在的问题是点击第二次提交按钮PhotoName才有值提交到php?
//上传图片的函数,并把上传的图片地址保存在新的变量里面,后期方便保存在数据库同一列里面 djf1(imgphat,phatvar) { var that = this; console.log(imgphat) for (var i = 0; i < imgphat.length; i++) { console.log(i); wx.uploadFile({ url: 'https://www.xxx.top:8082/imgup.php', filePath: imgphat[i], name: 'file', success: function (res) { var a = JSON.parse(res.data); if(phatvar=='PhotoName'){ that.setData({ PhotoName:that.data.PhotoName.concat('https://www.xxx.top:8082/'+a.data) }) } if(phatvar=='PhotoName1'){ that.setData({ PhotoName1:that.data.PhotoName1.concat('https://www.xxx.top:8082/'+a.data) }) } if (res) { wx.showToast({ title: '已提交发布!', duration: 3000 }); } } }) } }, //把表单的数据和图片在服务器上面的地址提交到php并保存,因为图片是可以为空 handleSubmit(){ var that = this; var fromex = that.data.value3 // if(fromex.id=="" ){ // this.djf2("条形码不能为空"); // } if(fromex[0] =="" ){ this.djf2("名称不能为空"); } if(fromex[1] ==""){ this.djf2("品牌不能为空"); } if(fromex[2]=="" ){ this.djf2("型号不能为空"); } if(fromex[3]== "" ){ this.djf2("类型不能为空"); } if(fromex[4] == "" ){ this.djf2("数量不能为空"); } if(fromex[5] == "" ){ this.djf2("单位不能为空"); } if(fromex[6] == "" ){ this.djf2("区域不能为空"); } if(fromex[7] == "" ){ this.djf2("时间不能为空"); } if(fromex[8] =="" ){ this.djf2("维保名不能为空"); } if(that.data.value4.length != 0 ){ that.djf1(that.data.value4,'PhotoName'); } if( that.data.tempImageUrl.length != 0){ that.djf1(that.data.tempImageUrl,'PhotoName1'); } console.log("一下等于多少") console.log(this.data.PhotoName1.length) wx.request({ url: 'https://www.xxx.top:8082/fromdata.php', //仅为示例,并非真实的接口地址 method:'POST', data: { 'a':fromex, 'b':this.data.PhotoName, 'c':this.data.PhotoName1, }, header: { 'content-type': 'application/x-www-form-urlencoded' // 默认值 }, success (res) { console.log(res) } }) },
2023-11-16 - 有什么api可以同时上传多张图片,而且还要带数据上传的?
wx.uploadFile({ url: 'https://。。。/', //仅为示例,非真实的接口地址 filePath: this.data.tempImageUrl, //我这个是与多个照片上传的 name: 'files', formData: { 'user': 'test' }, success (res){ const data = res.data console.log(data) //do something }, fail (res){ console.log(res) } }) {errMsg: "uploadFile:fail parameter error: parameter.filePath should be String instead of Array;"}当是会报错错误,我想保存数据和图片路径到数据库,有什么号的解决方法吗?
2023-10-20 - 更新完开发工具就出现错误,没跟新前是好的。给位大佬看看是上面问题?
[图片]
2023-10-19 - 图片用File ID在开发软件页面偶尔显示报错,手机端的不会?
大神帮忙解释一下 [图片] [图片] [图片] [图片] [图片]
2019-10-23 - 为什么云开发的云函数不会被打包上传?
为什么云开发的云函数不会被打包上传?有没有影响的 [图片] [图片] [图片]
2019-10-23