机型:iPhone7
微信版本:7.0.5
描述:使用wx.uploadFile api 上传小程序包里的图片报错 "uploadFile:fail file path invalid"
问题代码:
wx.uploadFile({ url: 'http:/xxxx.xxxx/fileupload' , name: 'filetoupload' , filePath: './cases/api/assets/10k.png' , }); |
请问微信是禁止开发者上传小程序包里面的图片嘛?在开发者工具上测试是没问题的。
filePath:
'./cases/api/assets/10k.png'
,把路径改成绝对路径,例如你的目录层级:
filePath:
'/images/cases/api/assets/10k.png'
调用upload 需要先调用chooseImage 啊。真机怎么让用户去你的小程序包里面找图片????
那你就写绝对路径,不要写相对路径