- wx.chooseMessageFile 选择文件后返回的文件类型一直是undefined?
wx.chooseMessageFile({ count: 1, success(res) { // tempFilePath可以作为img标签的src属性显示图片 var image = res.tempFiles[0]; if (image.size > 1024 * 1024 * 200) { wx.showToast({ title: "上传文件不能超过200M!", icon: 'none', duration: 2000 }) return; } wx.showLoading({ title: '上传中', }) that.setData({ image: image, hasImage: true, }) //上传文件 wx.uploadFile({ url: app.globalData.dev_url + '/pub/upload', //仅为示例,非真实的接口地址 filePath: that.data.image.path, name: 'file', timeout: 600000, formData: {}, success(res) { var res_obj = JSON.parse(res.data); that.setData({ qrInfo: res_obj.data, }) wx.hideLoading(); }, fail(res) { console.log(res); wx.showToast({ title: '上传失败,请重新上传', icon: 'none' }) wx.hideLoading(); } }) } }) 无论选择什么文件返回的tempFiles中文件的type都是undefined,这是什么原因呢,求大神解答。
2022-05-08 - wx.agentConfig有没有npm的包?
wx.config有npm的包 那wx.agentConfig有没有npm的包?
2021-03-11 - jsapi报80001错误是否是需要绑定企业域名?
jsapi报80001错误是否是需要绑定企业域名?
2021-03-11 - 为什么获取不到unionid?
小程序里根据getUserInfo获取到encryptedData和iv后使用code换取的session_key解密后还是没有unionid字段,其它字段都有,公众号也绑定了,小程序也授权了
2021-03-10 - 调用getImageInfo方法下载图片对图片本身有要求?
调用getImageInfo方法下载图片,大部分图片可以,但是调用部分图片的时候就会下载失败,例如图片:https://yangguangxile.oss-cn-hangzhou.aliyuncs.com/test_835098.jpeg就会下载失败,同域名下其它图片没有问题
2021-03-04