微信小程序上传图片是这样处理吗?它的临时图片路径可以使用吗?
发布于 6 年前 作者 haojun 11282 次浏览 来自 问答

wx.chooseImage({  success: function(res) {    var tempFilePaths = res.tempFilePaths    wx.uploadFile({      url: 'http://example.weixin.qq.com/upload',      filePath: tempFilePaths[0],      name: 'file',      formData:{        'user': 'test'      },      success: function(res){        var data = res.data        //do something      }    })  } })

chooseImage返回的图片路径是"http://tmp/wx9c030885c5d23127.o6zAJs8Ctaba5jZ8V02KK2RICZI8.9e714d9ec1b0f30aa6bf573b91a9a307.jpg",http的图片可以使用吗?
2 回复

http://tmp/ 开头的是临时文件路径,您可以像本地文件一样使用它。

大神,能给qq吗?或者加我,我的qq:1967224973。上传图片,我已经卡了很长时间了,后台是java写的,总是获取不到值,能帮忙解决一下吗?谢谢

回到顶部